Explore what CodeHS has to offer for districts, schools, and teachers.
Click on one of our programs below to get started coding in the sandbox!
View All
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))
print(hi_scores[3][1])
print(hi_scores[3])
print(hi_scores[2])
print(hi_scores[2][1])