Can anyone help me use sorted() to print a list in reverse alphabetical order please?
Here is my list:
places = [‘Iceland’, ‘Japan’, ‘Manchester’, ‘Norwich’]
As I understand it, the sorted() function can also accept a reverse=True argument to display the list in reverse alpha order, but I am having trouble getting the program to do that
Many thanks in advance
Simon