# print scores in order from highest to lowest. 
# Note: List pre-sorted from lowest to highest 

scores = [75, 77, 80, 85, 90, 95, 99]

for scr in reversed(scores): 
    print(scr, end='')

Embed on website

To embed this project on your website, copy the following code and paste it into your website's HTML: