Answers for "how to use sort() in python"

2

how to sort list python

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

pythonn sort example

gList = [ "Rocket League", "Valorant", "Grand Theft Autu 5"]
gList.sort()
# OUTPUT --> ['Grand Theft Auto 5', 'Rocket League', 'Valorant']
# It sorts the list according to their names
Posted by: Guest on September-04-2020
7

python sort

nums = [4,8,5,2,1]
#1 sorted() (Returns sorted list)
sorted_nums = sorted(nums)
print(sorted_nums)#[1,2,4,5,8]
print(nums)#[4,8,5,2,1]

#2 .sort() (Changes original list)
nums.sort()
print(nums)#[1,2,4,5,8]
Posted by: Guest on May-20-2020

Code answers related to "how to use sort() in python"

Python Answers by Framework

Browse Popular Code Answers by Language