0
How to put the list on reversed alphabetical order
Tried to put a list on reversed alphabetical order without changing the original list. Can you tell me what is wrong and other ways to do it ? code link : https://code.sololearn.com/ce8GGBc95Kd5/#py
1 Antwort
+ 3
It should be sorted(places, reverse=true), not reverse(sorted(places)).