Sonni
0
Q:

python sort algorithm

# sort() will change the original list into a sorted list
vowels = ['e', 'a', 'u', 'o', 'i']
vowels.sort()
# Output:
# ['a', 'e', 'i', 'o', 'u']

# sorted() will sort the list and return it while keeping the original
sortedVowels = sorted(vowels)
# Output:
# ['a', 'e', 'i', 'o', 'u']
32
a_list = [3,2,1]
a_list.sort()
1
a = [1, 2, 0, 8, 4, 5, 3, 7, 6]
print(a.sort())
1
strs = ["geeks", "code", "ide", "practice"] 
  
# Sorting list of Integers in ascending 
strs.sort() 
  
print(strs) 
2
arr = [1,4,2,7,5,6]
#sort in ascending order
arr = arr.sort() 

#sort in descending order
arr = arr.sort(reverse = True)
1
vowels = ['e', 'a', 'u', 'o', 'i']
vowels.sort()
4

    cars = ['Ford', 'BMW', 'Volvo']


    cars.sort() 
1
List_name.sort()
This will sort the given list in ascending order.
1
old_list = [3,2,1]
old_list.sort()
1
list.sort([func])
0

New to Communities?

Join the community