# add score name = raw_input("What is the player's name?: ") score = int(raw_input("What score did the player get?: ")) entry = (score, name) scores.append(entry) scores.sort() scores.reverse() # want the highest number first scores = scores[:5] # keep only top 5 scores
# display print "High Scoresn" print "NAMEtSCORE" for entry in scores: score, name = entry print name, "t", score
Related Scripts with Example Source Code in same category :