Inspiration
I learnt python but forgot due to lack of practice. So I am revising Python again doing this program
What it does
This is a program to sort a list
How we built it
I built this using python
What we learned
helped me revise lists back again
print('This is a program to sort names in alphabetical order')
user_name=input('Enter the names seperated by spaces:')
print("\n")
name_list = user_name.split()
print('list: ', name_list)
name_list.sort()
print(name_list)
Log in or sign up for Devpost to join the conversation.