sorted in function code example
Example 1: pyhton built in sort
arr = [ 1, 3, 2]
arr.sort()
Example 2: python how to sort a list alphabetically
print(sorted(("snow", "glacier", "iceberg")))
arr = [ 1, 3, 2]
arr.sort()
print(sorted(("snow", "glacier", "iceberg")))