Überprüfen Sie, ob die Variable in Python definiert ist

try: x
except NameError: some_fallback_operation(  )
else: some_operation(x)
Blyxyas