Re: find isset() php function equivalent in python

2005-02-01 Thread Ola Natvig
Max M wrote: Ola Natvig wrote: Olivier Noblanc ATOUSOFT wrote: Hello What is the equivalent function of php isset() in python try: if variable: # isset pass except NameError: # not set pass you could use: >>> 'variable' in vars() But be aware that it is bad bad p

Re: find isset() php function equivalent in python

2005-02-01 Thread Max M
Ola Natvig wrote: Olivier Noblanc ATOUSOFT wrote: Hello What is the equivalent function of php isset() in python try: if variable: # isset pass except NameError: # not set pass you could use: >>> 'variable' in vars() But be aware that it is bad bad practice to do it

Re: find isset() php function equivalent in python

2005-02-01 Thread Ola Natvig
Olivier Noblanc ATOUSOFT wrote: Hello What is the equivalent function of php isset() in python Thank you very much. olivier noblanc http://www.logiciel-erp.fr try: if variable: # isset pass except NameError: # not set pass could wo

find isset() php function equivalent in python

2005-02-01 Thread Olivier Noblanc ATOUSOFT
Hello What is the equivalent function of php isset() in python Thank you very much. olivier noblanc http://www.logiciel-erp.fr -- http://mail.python.org/mailman/listinfo/python-list