scores = ["1","2","3"]scores.sort()for score in scores: print scorescores.reverse() # want the highest number first# list high-score tablefor score in scores: print score