Please enable JavaScript to use CodeHS

Want to receive Question of the Day updates? Subscribe Here

Python Question of the Day March 6, 2025

  1. Incorrect Correct No Answer was selected Invalid Answer

    What will the following code print to the console when it runs?

    favorite_pets = ["mice", "dogs", "cats", "turtles"]
    
    print("My favorite pets are: ")
    for pet in favorite_pets:
        print(pet)
    Python