Best way to create a “reversed” list in Python?
In Python, what is the best way to create a new list whose items are the same as those of some other list, but in reverse order? (I don’t want to modify the existing list in place.)
In Python, what is the best way to create a new list whose items are the same as those of some other list, but in reverse order? (I don’t want to modify the existing list in place.)