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

2

sort list in python

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

list sort python

>>> names = ['Harry', 'Suzy', 'Al', 'Mark']
>>> sorted(names)
['Al', 'Harry', 'Mark', 'Suzy']
>>> sorted(names, reverse=True)
['Suzy', 'Mark', 'Harry', 'Al']
Posted by: Guest on July-15-2020

Code answers related to "how to sort the list in ascending order in python"

Python Answers by Framework

Browse Popular Code Answers by Language