gert <gert.cuyk...@gmail.com> writes: > Is this the new way to create a list in Python3.0 ? > s=('test',)
That is a 1-tuple in both 2.x and 3.0. For a list, you'd say s = ['test'] -- http://mail.python.org/mailman/listinfo/python-list
gert <gert.cuyk...@gmail.com> writes: > Is this the new way to create a list in Python3.0 ? > s=('test',)
That is a 1-tuple in both 2.x and 3.0. For a list, you'd say s = ['test'] -- http://mail.python.org/mailman/listinfo/python-list