Answers for "how to sort list in ascending order python"

1

how to sort a list in python

l=[1,3,2,5]
l= sorted(l)
print(l)
#output=[1, 2, 3, 5]
#or reverse the order:
l=[1,3,2,5]
l= sorted(l,reverse=True)
print(l)
#output=[5, 3, 2, 1]
Posted by: Guest on July-04-2020
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 "how to sort list in ascending order python"

Python Answers by Framework

Browse Popular Code Answers by Language