reverse() does not work on a Python literal?

Viewed 2130

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.

5 Answers
Related