Inspiration

Programming

What it does

Sorting

How we built it

Python

Challenges we ran into

Accomplishments that we're proud of

What we learned

What's next for sorting

first time tried with a language that is new to me i tried with python using google collab

Built With

Share this project:

Updates

posted an update

my_str = "Hello this Is an Example With cased letters"

To take input from the user

my_str = input("Enter a string: ")

breakdown the string into a list of words

words = [word.lower() for word in my_str.split()]

sort the list

words.sort()

display the sorted words

print("The sorted words are:") for word in words: print(word)

Log in or sign up for Devpost to join the conversation.