Question
To complete this program successfully the program must be designed to collect the following inputs from the user: Full Name Current Age Desired Retirement Age
To complete this program successfully the program must be designed to collect the following inputs from the user:
- Full Name
- Current Age
- Desired Retirement Age
- Current Level of Retirement Savings
- What Is the Total Amount of Retirements Savings Is Needed at Retirement
Finally, the program will need to output a simple statement (or statements) that show the name, how many years left to retirement and how much needs to be saved to reach your retirement goals.
I ultimatley need help with the output. I currently have:
print("Name: ", full_name)
print("Years left to retirement: ", retirement_age - age)
print("Remaining savings needed to reach retirement goal: ", total_savings - current_savings)
But this is not working in Python.
Thank you!
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started