[Tutor] tuples versus lists

John Fouhy john at fouhy.net
Fri Sep 15 05:14:12 CEST 2006


Generally, you should use a tuple when you have different things that
you want to clump together to make one data structure.  Whereas you
should use a list when you have multiple things that are the same,
that you want to iterate over.

-- 
John.


More information about the Tutor mailing list