Answers for "sort a list of numbers in python"

1

sort a list numbers in python

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

sort list in python

List_name.sort()
This will sort the given list in ascending order.
Posted by: Guest on February-03-2020

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

Python Answers by Framework

Browse Popular Code Answers by Language