python check if value is undefined

40

python check if value is undefined -

try:
    thevariable
except NameError:
    print("well, it WASN'T defined after all!")
else:
    print("sure, it was defined.")

how to check if var exists python -

# for local
if 'myVar' in locals():
  # myVar exists.
# for globals
if 'myVar' in globals():
  # myVar exists.

Comments

Submit
0 Comments