Hello, I want to append new input to list SESSION_U without erasing its content. I try this:
... try: SESSION_U.append(UNIQUES) except NameError: SESSION_U = [] SESSION_U.append(UNIQUES) ... I would think that at first try I would get the NameError and SESSION_U list would be created and appended; the second time try would work. But it does not. Do you know why? -- http://mail.python.org/mailman/listinfo/python-list