In article <[email protected]>,
 Alain Ketterlin <[email protected]> wrote:

> Tuples are immutable, while lists are not.

If you really want to have fun, consider this classic paradox:

>>> [] is []
False
>>> id([]) == id([])
True
-- 
http://mail.python.org/mailman/listinfo/python-list

Reply via email to