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
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
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
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