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
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
sort a list numbers in python
numbers = [1, 5, -2, 4]
numbers.sort()
print(numbers)
Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us