You are here: Home / Topics / Python Program to sort alphabetically the words form a string provided by the user

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

Filed under: Python on 2023-09-17 22:23:25

#!/usr/bin/python
# -*- coding: utf-8 -*-
# Program to sort alphabetically the words form a string provided by the user

# 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


About Author:
M
Mr. Dubey     View Profile
Founder of MCQ Buddy. I just like to help others. This portal helps students in getting study material free. Share your stuff here so that others can get benefitted.