


# https://www.globalsino.com/ICs/
# Check if a Variable Does Exist/is Assigned/Defined


# myName = "Yougui"

if myName is None:
    print("My name is not written.")
else:
    print("My name is ", myName)
    
