Please enable JavaScript to use CodeHS

Want to receive Question of the Day updates? Subscribe Here

Python Question of the Day April 25, 2025

  1. Incorrect Correct No Answer was selected Invalid Answer

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

    ghosts = {
            "Red Ghost" : "Blinky",
            "Pink Ghost" : "Pinky",
            "Blue Ghost" : "Inky",
            "Orange Ghost" : "Clyde"
    }
    
    for ghost in ghosts:
        print(ghosts[ghost])
    Python