students = ["Luke", "Leia", "Han", "Chewie", "Lando"]
# Sort alphabetically (A-Z) by default:
students.sort()
print(students)
# "Chewie", "Han", "Lando", "Leia", "Luke"
testScores = [92, 83, 88, 71, 79, 100, 95, 67, 70, 91]
# sort from highest to lowest score:
testScores.sort(reverse=True)
print(testScores)
# 100, 95, 92, 91, 88, 83, 79, 71, 70, 67