On Sat, Oct 11, 2008 at 9:53 AM, Wayne Watson
<[EMAIL PROTECTED]> wrote:
> I would like to create a tuple of tuples. As I read (x,y) pairs I would like
> to "add" them to others. In the example below, I seem to be picking up ()
> each time I augment the tuple t.
> ===
t = ()
t
Title: Signature.html
I would like to create a tuple of tuples. As I read (x,y) pairs I would
like to "add" them to others. In the example below, I seem to be
picking up () each time I augment the tuple t.
===
>>> t = ()
>>> t = t,(0,1)
>>> t
((), (0, 1))
>>> t,(2,3)
(((), (0, 1)),