Tuple - List - Whats the difference?

Neil Schemenauer nas at arctrix.com
Fri Dec 8 06:07:45 EST 2000


On Thu, Dec 07, 2000 at 08:13:31PM -1200, Rob Brown-Bayliss wrote:
> Hi, brand new to python and I am trying to understand why there are
> tuples and lists.  
> 
> They both look to serve the same purpose.  Can some one enlighten me?

Lists are mutable (you can change them after creating them) while
tuples are not.

  Neil




More information about the Python-list mailing list