


# https://www.globalsino.com/ICs/
# Check if a variable is defined


myName = "Yougui"

try:
    myName
except NameError:
    myName = None

if myName is None:
    print("The variable is not defined")
else:
    print("The variable is defined")
