sort list of numbers ascending python code example

Example 1: sort list of numbers python

nums = [48, 35, 32, 5, 5, 16, 5, 16, 28, 29] # Makes a list of numbers

sortedNums = sorted(nums, key=int) # Sorts the numbers and saves it as a variable
print(sortedNums) # Prints the variable

Example 2: python sort list

# sort() will change the original list into a sorted list
vowels = ['e', 'a', 'u', 'o', 'i']
vowels.sort()
# Output:
# ['a', 'e', 'i', 'o', 'u']

# sorted() will sort the list and return it while keeping the original
sortedVowels = sorted(vowels)
# Output:
# ['a', 'e', 'i', 'o', 'u']

Example 3: how to use sorted function in python

var_array = [5,2,4,3,1]
var_sort = sorted(var_array)

Example 4: sort a list numbers in python

numbers = [1, 5, -2, 4]
numbers.sort()
print(numbers)

Tags:

Java Example