Week 3 assignment 2

 avatar
unknown
python
2 years ago
117 B
7
Indexable
string:str = input()
  
string = string.lower()
string = sorted(string)
res = ''.join(map(str, string))

print(res)

Editor is loading...
Leave a Comment