From my interpreter prompt:
>>> tuple = ("blah")
>>> len(tuple)
4
>>> tuple2 = ("blah",)
>>> len (tuple2)
1So why is a tuple containing the string "blah" without the comma of length four? Is there a good reason for this or is this a bug? -- Carl J. Van Arsdall [EMAIL PROTECTED] Build and Release MontaVista Software -- http://mail.python.org/mailman/listinfo/python-list
