Answers for "how to use order in alphabet python"

-1

how to use order in alphabet python

# Program to sort alphabetically the words form a string provided by the user

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 = my_str.split()

# sort the list
words.sort()

# display the sorted words

print("The sorted words are:")
for word in words:
   print(word)
Posted by: Guest on May-26-2020
-2

how to use order in alphabet python

The sorted words are:
Example
Hello
Is
With
an
cased
letters
this
Posted by: Guest on May-26-2020

Code answers related to "how to use order in alphabet python"

Python Answers by Framework

Browse Popular Code Answers by Language