Question: Dictionaries in Python - Write a Python program that prompts the user to enter a string text . The program should then print a string
Dictionaries in Python -
Write a Python program that prompts the user to enter a string text. The program should then print a string that contains the same characters as text, but in alphabetical order (actually, ASCII order is fine).
Hint: You can convert a string to a list and use the sort method, but you cannot convert the list back into a regular string. You will need to construct the string using the list by hand.
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
