Tuple Format?

Gene C gchiaramonte at yahoo.com
Mon Sep 4 10:15:27 EDT 2000


> `[] == ()
> '[1] == (1,)
> `[1, 2, 3] = (1, 2, 3)

Oops, that should have been:

`[] == ()
`[1] == (1,)
`[1, 2, 3] = (1, 2, 3)

Gene






More information about the Python-list mailing list