Answers for "ascending 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
2

sort list in python

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

Python Answers by Framework

Browse Popular Code Answers by Language