In this program, you’ll learn to sort the words in alphabetic order using for loop and display it.
To understand this example, you should have the knowledge of the following Python programming topics:
In this example, we illustrate how words can be sorted lexicographically (alphabetic order).
Source Code
# 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)
Output
The sorted words are: an cased example hello is letters this with
Note: To test the program, change the value of my_str.
In this program, we store the string to be sorted in my_str. Using the split() method the string is converted into a list of words. The split() method splits the string at whitespaces.
The list of words is then sorted using the sort() method, and all the words are displayed.
Related posts:
Python Machine Learning Second Edition - Sebastian Raschka & Vahid Mirjalili
Python Program to Slice Lists
Python Dictionary setdefault()
Python Shallow Copy and Deep Copy
Python next()
Python Dictionary pop()
Python ascii()
Python Artificial Intelligence Project for Beginners - Joshua Eckroth
Python timestamp to datetime and vice-versa
Python if...else Statement
Python Program to Check if a Key is Already Present in a Dictionary
Python String isspace()
Python String isdigit()
Python Program to Find All File with .txt Extension Present Inside a Directory
Python Deeper Insights into Machine Learning - Sebastian Raschka & David Julian & John Hearty
Python Directory and Files Management
Python Program to Print Colored Text to the Terminal
Python Dictionary get()
Machine Learning Mastery with Python - Understand your data, create accurate models and work project...
Python Strings
Python Program to Check If a List is Empty
Python Program to Compute all the Permutation of the String
Python Program to Find HCF or GCD
Python for Programmers with introductory AI case studies - Paul Deitel & Harvey Deitel
Python __import__()
Python Program to Transpose a Matrix
Python tuple()
Machine Learning with Python for everyone - Mark E.Fenner
Python Program to Generate a Random Number
Python Namespace and Scope
Python divmod()
Python enumerate()