Why doesn't this work in Python?
>>> print [0,1,0,1,1,0,1,1,1,0,1,1,1,1,0].reverse()
None
I expected to get back the list in reverse order.
|
Why doesn't this work in Python?
I expected to get back the list in reverse order. |
||||
|
|
|
If you want it to return a new list in reverse order, you can use
As I'm still trying to understand the downvote, if it doesn't matter that the original list gets changed, use @taskinoor's answer, it'll be faster. However if you're required to keep the original list unchanged, I suggest you to use
outputs
|
|||||||||||||||
|
It's because |
|||||||
|
|
If you want reversed copy of a list, use
p.s. |
||||
|
|
|
Just to complement other answers. Do not forget:
This way your list is unchanged if this is a requierement. |
|||
|
|
|
reverse changes a list variable as seen here list reverse if you print it after you reversed it it will show up correctily so just use a variable |
|||
|
|