sorting numbers in python code example
Example 1: sort an array python
#List
myList = [1,5,3,4]
myList.sort()
print(myList)
#[1,3,4,5]
Example 2: python how to sort a list alphabetically
print(sorted(("snow", "glacier", "iceberg")))
#List
myList = [1,5,3,4]
myList.sort()
print(myList)
#[1,3,4,5]
print(sorted(("snow", "glacier", "iceberg")))