Sorted lists are useful when we want to understand where individual data points, such as scores, stand in ralation to the others.
To sort a list like scores, we code the list name, a dot ., and then sort().
>>> scores = [3,6,1,12]
>>> scores.sort()
>>> scores
[1, 3, 6, 12]