Week 3 assignment 2

 avatar
unknown
python
a year ago
117 B
5
Indexable
string:str = input()
  
string = string.lower()
string = sorted(string)
res = ''.join(map(str, string))

print(res)

Editor is loading...
Leave a Comment