Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

when running code in python outside of a function the following works. however the question is how can i get it to work inside a

when running code in python outside of a function the following works.

however the question is how can i get it to work inside a function eg: when adding say: def house_hunting(annual_salary, portion_saved, total_cost):

annual_salary= float(input("Enter your annual salary: ")) portion_saved= float(input("Enter the percent of your salary to save, as a decimal: ")) total_cost= float(input("Enter the cost of your dream home: ")) r = 0.04 ms = annual_salary/12 current_saving = 0 months = 0 portion_down_payment = 0.25 down_payment= total_cost*portion_down_payment while current_saving < down_payment: current_saving = current_saving + (ms*portion_saved) + (current_saving*r/12) months += 1 print("Number of Months required for down payment:", months)

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image_2

Step: 3

blur-text-image_3

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Managing Your Information How To Design And Create A Textual Database On Your Microcomputer

Authors: Tenopir, Carol, Lundeen, Gerald

1st Edition

1555700233, 9781555700232

More Books

Students also viewed these Databases questions

Question

Why is competency modeling an important practice?

Answered: 1 week ago