Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PYTHON

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
 
PREVIOUS NEXT
Tagged: #sort #list #numbers #python
ADD COMMENT
Topic
Name
6+4 =