Please enable JavaScript to use CodeHS

Want to receive Question of the Day updates? Subscribe Here

Python Question of the Day March 24, 2025

  1. Incorrect Correct No Answer was selected Invalid Answer

    What does the following program print to the console when it runs?

    numbers = [x + 5 for x in range(4)]
    print(numbers)
    Python