python if statement thinks my variable doesn't exist code example
Example: 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.