Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PYTHON

Python Program to Sort Words in Alphabetic Order

# 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 = [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)
Source by www.programiz.com #
 
PREVIOUS NEXT
Tagged: #Python #Program #Sort #Words #Alphabetic #Order
ADD COMMENT
Topic
Name
7+8 =