Andre Engels wrote:
The reverse function is a function to reverse the list in place, not a
function to get the reverse of the list:

x = [1,2,3,4]
y = x
z = x.reverse()

will result in:

x = y = [4,3,2,1]
z = None

.reverse returns None.  See the documentation.

--
Erik Max Francis && m...@alcyone.com && http://www.alcyone.com/max/
 San Jose, CA, USA && 37 18 N 121 57 W && AIM/Y!M/Skype erikmaxfrancis
  Sometimes a cigar is just a cigar.
   -- Sigmund Freud
--
http://mail.python.org/mailman/listinfo/python-list

Reply via email to