.sort() in python code example
Example 1: how do i sort list in python
my_list = [9, 3, 1, 5, 88, 22, 99]
my_list = sorted(my_list, reverse=True)
print(my_list)
my_list = sorted(my_list, reverse=False)
print(my_list)
my_list.sort(reverse=True)
print(my_list)
print(my_list[::-1])
Example 2: python sort list
vowels = ['e', 'a', 'u', 'o', 'i']
vowels.sort()
sortedVowels = sorted(vowels)
Example 3: pythonn sort example
gList = [ "Rocket League", "Valorant", "Grand Theft Autu 5"]
gList.sort()
Example 4: sort in python'
arr = [1,4,2,7,5,6]
arr = arr.sort()
arr = arr.sort(reverse = True)
Example 5: python sort
nums = [4,8,5,2,1]
sorted_nums = sorted(nums)
print(sorted_nums)
print(nums)
nums.sort()
print(nums)
Example 6: how to sort a list in python
l=[1,3,2,5]
l= sorted(l)
print(l)
l=[1,3,2,5]
l= sorted(l,reverse=True)
print(l)