Source Code:
(back to article)
try: my_variable print('my_variable exists') except NameError: print('my_variable does not exist')
Result:
Report an issue