Answers for "how to sort a list python"

12

python sort list in reverse

#1 Changes list
list.sort(reverse=True)
#2 Returns sorted list
sorted(list, reverse=True)
Posted by: Guest on May-25-2020
29

how do i sort list in python

my_list = [9, 3, 1, 5, 88, 22, 99]

# sort in decreasing order
my_list = sorted(my_list, reverse=True) 
print(my_list)

# sort in increasing order
my_list = sorted(my_list, reverse=False) 
print(my_list)

# another way to sort using built-in methods
my_list.sort(reverse=True)  
print(my_list)

# sort again using slice indexes
print(my_list[::-1])

# Output
# [99, 88, 22, 9, 5, 3, 1]
# [1, 3, 5, 9, 22, 88, 99]
# [99, 88, 22, 9, 5, 3, 1]
# [1, 3, 5, 9, 22, 88, 99]
Posted by: Guest on February-23-2020
2

how to sort list python

a_list = [3,2,1]
a_list.sort()
Posted by: Guest on September-19-2020
2

sort list python

>>> a = [5, 2, 3, 1, 4]
>>> a.sort()
>>> a
[1, 2, 3, 4, 5]
Posted by: Guest on August-09-2021
6

sorting python array

sorted(list, key=..., reverse=...)
Posted by: Guest on September-23-2019
0

python sort a list using defined order

>>> sorted(A, key = lambda i: B.index(i[0]))
[[6, 1], [1, 3], [3, 5]]
Posted by: Guest on December-29-2020

Code answers related to "how to sort a list python"

Python Answers by Framework

Browse Popular Code Answers by Language