python sorted ascending
sorted_list = sorted(list) # ascending (default) sorted_list = sorted(list, reverse=True) # descending
python sorted ascending
sorted_list = sorted(list) # ascending (default) sorted_list = sorted(list, reverse=True) # descending
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]
Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us