控制流python

时间:2021-03-27 18:01:44

标签: python python-3.x while-loop infinite-loop

其实我习惯了c++,却被python困住了。我似乎无法理解是什么导致了无限 while 循环。 该代码的主要目标是计算需要多少个月才能为预付款存入足够的钱。

#*******Initializing all the required variables***********
home_price = float(input("Enter the price of your dream home:")) # cost of the home

down_payment_portion = 0.25 # initial upfront pay for the home which is 25%
stamp_duty_portion = 0.03 # 3%

annual_salary = float(input("Enter your annual salary:"))

tax_portion = 0.2 # 20%
save_amount = 0

save_portion = float(input("Enter the amount of money you want to save after tax-cut:"))

annual_return = 0.05 # 5%
months = 0

#*********************************************************
#------------Calculating all the necessary values---------

down_payment_portion = down_payment_portion * home_price # calculating the down payment for the dream home

stamp_duty_portion = stamp_duty_portion * home_price # calculating the stamp duty for the home

tax_portion = tax_portion * annual_salary # calculating the tax cut

save_portion = save_portion * save_amount # calculating the portion of tax-cut income to be put into savings

annual_return = (save_amount * annual_return) / 12

upfront_payment = down_payment_portion + stamp_duty_portion

while(save_amount < upfront_payment):
   save_amount = save_amount + annual_return
   save_amount = save_amount + (annual_salary - tax_portion) * save_portion / 12
   months = months + 1

print(f'You will need {months} month to save enough for your upfront payment{upfront_payment}.')

1 个答案:

答案 0 :(得分:1)

  1. 您初始化 save_amount = 0
  2. 你得到 annual_return 作为 annual_return = (save_amount * annual_return) / 12 这将是
  3. 您还得到 save_portion 作为 save_portion = save_portion * save_amount,它再次
  4. 因此,while 循环中的 save_amount 永远不会增加,它也保持 save_amount < upfront_payment 始终为真 ==> 无限循环< /li>

在你的代码中

while(save_amount < upfront_payment):
   save_amount = save_amount + annual_return # 0 + 0 = 0

   # 0 + (some value * 0)/12 = 0
   save_amount = save_amount + (annual_salary - tax_portion) * save_portion / 12