Question: What will print from the following code if the user enters Josie followed by 2 8 ? def getName ( ) : userName = input

What will print from the following code if the user enters "Josie" followed by 28?
def getName():
userName = input("What's your name?")
return userName
def getAge():
userAge = input("What's your age?")
return userAge
userName = getName()
userAge = getAge()
print(userName)

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!