Question

Write a program In python of Jupiter notebook That prompts the user to enter his/her first...

Write a program In python of Jupiter notebook That prompts the user to enter his/her first name, last name, and year of birth in a single string (in the format: fn;ln;yyyy), then calculates the age tell it to him/her after greeting him/her using the first name.
Make sure to capitalize the user's first name, regardless of how he/she typed it in.
Hint: review Exercise 1!

Example:
Enter your first name, last name, and birth year (in format fn;ln;yyyy): alex;smith;1994
Hi Alex, you are 26 years old!

Homework Answers

Answer #1

Python code(In Jupiter notebook):

#accepting first,last and birth year
first,last,birth_year=input("Enter your first name, last name, and birth year (in format fn;ln;yyyy): ").split(";")
age=2020-int(birth_year)
#printing age
print("Hi {}, you are {} years old!".format(first.capitalize(),age))


Screenshot:


Input and Output:

Know the answer?
Your Answer:

Post as a guest

Your Name:

What's your source?

Earn Coins

Coins can be redeemed for fabulous gifts.

Not the answer you're looking for?
Ask your own homework help question
Similar Questions