Answers for "how to check if a variable exists or not in python"

11

how to check if a variable exists in python

#if the variable is local: 
if 'myVar' in locals():
  # myVar exists

#if the variable is global:
if 'myVar' in globals():
  # myVar exists.
Posted by: Guest on October-03-2020

Code answers related to "how to check if a variable exists or not in python"

Code answers related to "TypeScript"

Browse Popular Code Answers by Language