Answers for "ascending order program in python"

3

python sorted ascending

sorted_list = sorted(list)					# ascending (default)
sorted_list = sorted(list, reverse=True)    # descending
Posted by: Guest on May-13-2021
4

how to sort a list descending python

# defning A as a list
A.sort(reverse = True)
Posted by: Guest on April-10-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 "ascending order program in python"

Python Answers by Framework

Browse Popular Code Answers by Language