How can I get a reversed copy of a list (avoid a separate statement when chaining a method after .reverse)?

You can use slicing to return the reversed list:

l[::-1]

Leave a Comment