How to arrange A - Z names . | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 1

How to arrange A - Z names .

Arrange A - Z names like.. Birds , Air , Cat . To.. Air , Birds , Cat

12th Jan 2022, 2:08 PM
🔰 Arit Dey 🔰
🔰 Arit Dey 🔰 - avatar
2 Answers
+ 5
You may try sort() method if they are stored in a list. div = ["Birds", "Air", "Cat"] div.sort() print(div)
12th Jan 2022, 2:32 PM
Simba
Simba - avatar
+ 1
You can use any sorting algorithm. I have tweaked the bubble sort at the end of the python course to work for your case. https://code.sololearn.com/cNXyW5Gh0d5D/?ref=app
12th Jan 2022, 2:54 PM
Avinesh
Avinesh - avatar