Inspiration
This is my first individual hackathon. My first season of MLH! So I am super excited to do this first challenge which includes coding!
What it does
Well, it sorts a list. Using the magic of python, we try to accomplish this task.
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.