ascending order array in python code example
Example 1: sort an array python
#List
myList = [1,5,3,4]
myList.sort()
print(myList)
#[1,3,4,5]
Example 2: sort list in python
List_name.sort()
This will sort the given list in ascending order.
#List
myList = [1,5,3,4]
myList.sort()
print(myList)
#[1,3,4,5]
List_name.sort()
This will sort the given list in ascending order.