top of page

Python program accept a hyphen-separated sequence of words as input and prints the sorted words

  • Writer: Rajesh Singh
    Rajesh Singh
  • Feb 19, 2023
  • 1 min read



This program is most for O Level practical Exam so read it carefully.

Write a Python program that accepts a hyphen-separated sequence of words as input

and prints the words in a hyphen-separated sequence after sorting them alphabetically.

Hint:

Input: gaurav-ram-yashir-bittu-wong

Output:bittu-gaurav-ram-wong-yashir



Program:

print("Enter words separated by Hyphens : ")

lst = [n for n in input().split("-")]

lst.sort()

print('-'.join(lst))


Output:

Enter words separated by Hyphens :

gaurav-ram-yashir-bittu-wong

bittu-gaurav-ram-wong-yashir



Recent Posts

See All

댓글 2개


Damian Sumiti
Damian Sumiti
2023년 6월 19일

Dear Sir/Madam,

Are you looking for Money to enlarge your business? You have come to the right place. We offer Cash at low interest rate OF 2% no matter your location (WhatsApp) number +918131851434 contact email id : sumitihomelend@gmail.com Mr. Damian Sumiti

좋아요

dream reflectionmedia
dream reflectionmedia
2023년 3월 06일

Thank you for sharing The best Blog commenting website Careerbodh, reach us on our website dream reflection media provides information about Best digital marketing and SEO services in USA.

좋아요
bottom of page