Define a function that takes in the age of the user and adds it to an output sentence such as "You are ..... old".
def userName(): age = int(input("How old are you? ")) print(("You are {} old.").format(age))userName()
LR
def userName(): age = int(input("How old are you? ")) print(("You are {} old.").format(age))userName()