Please enable JavaScript to use CodeHS

Want to receive Question of the Day updates? Subscribe Here

Python Question of the Day Feb. 25, 2025

  1. Incorrect Correct No Answer was selected Invalid Answer

    Review the following tuple. What code will print the name and score of the lowest score achieved in a video game to the console?

    hi_scores = (("Sam", 1500), ("Vanessa", 1250), ("Elenor", 1130))
    Python