Week 3 assignment 2

mail@pastecode.io avatar
unknown
python
8 months ago
117 B
2
Indexable
Never
string:str = input()
  
string = string.lower()
string = sorted(string)
res = ''.join(map(str, string))

print(res)

Leave a Comment