Week 3 assignment 2

Anonymous
python
02/12/2024 12:10 PM
156 B
13
Indexable
string:str = input()
  
string = string.lower()
string = sorted(string)
res = ''.join(map(str, string))

print(res)

Editor is loading...
Leave a Comment