Answers for "how to check if a var is existing in python"

5

how to check if var exists python

# for local
if 'myVar' in locals():
  # myVar exists.
# for globals
if 'myVar' in globals():
  # myVar exists.
Posted by: Guest on March-26-2020

Code answers related to "how to check if a var is existing in python"

Code answers related to "TypeScript"

Browse Popular Code Answers by Language