scores = ["1","2","3"]# delete a scorescore = int(raw_input("Delete which score?: "))if score in scores: scores.remove(score)else: print score, "isn't in the high scores list."# list high-score tablefor score in scores: print score