So überprüfen Sie, ob in Python eine Variable vorhanden ist
#if the variable is local:
if 'myVar' in locals():
# myVar exists
#if the variable is global:
if 'myVar' in globals():
# myVar exists.
Worried Wryneck