I have this simplified code (the code I am working on is actually larger)...
def My_Age()
Age = input ("What is your age")
def Message()
print ("Your age is:", Age)
# Main program
Message()
My question is how do I get the value in Age to show in the message function?