how to sort numbers in python code example
Example 1: sort list of numbers python
nums = [48, 35, 32, 5, 5, 16, 5, 16, 28, 29]
sortedNums = sorted(nums, key=int)
print(sortedNums)
Example 2: python sort list
vowels = ['e', 'a', 'u', 'o', 'i']
vowels.sort()
sortedVowels = sorted(vowels)
Example 3: sort an array python
myList = [1,5,3,4]
myList.sort()
print(myList)
Example 4: python how to sort a list alphabetically
print(sorted(("snow", "glacier", "iceberg")))
Example 5: sort list in python
List_name.sort()
This will sort the given list in ascending order.