Skip to content
Advertisement

How do I reverse a part (slice) of a list in Python?

Why doesn’t this work?

JavaScript

Advertisement

Answer

a[2:4] creates a copy of the selected sublist, and this copy is reversed by a[2:4].reverse(). This does not change the original list. Slicing Python lists always creates copies — you can use

JavaScript

to copy the whole list.

User contributions licensed under: CC BY-SA
7 People found this is helpful
Advertisement