Answers for "sort a list numbers in python"

2

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
Posted by: Guest on March-30-2021
1

sort a list numbers in python

numbers = [1, 5, -2, 4]
numbers.sort()
print(numbers)
Posted by: Guest on February-11-2021

Code answers related to "sort a list numbers in python"

Python Answers by Framework

Browse Popular Code Answers by Language