Vitaliy_Novichikhin

stepik 2.1.5 with functions????

Jun 7th, 2020
191
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.87 KB | None | 0 0
  1. import math
  2. x = float(input())
  3. k = float(input())
  4.  
  5. n = int(input())
  6.  
  7. s = x * (1+k/(12*100))**n
  8. profit = s - x
  9.  
  10.  
  11. #вывести результат
  12. # deposit - сумма вклада, interest_rate -процентная ставка,
  13. # amount_months - количество месяцев
  14. def compute_income(deposit, interest_rate, amount_months):
  15.     # вычислить прибыль
  16. # вычислить прибыль с помощью функции
  17. # Я так и не могу понять, как функция догадывается, что нужно подставить значения выражения, которое написано выше? Код собака работает!)))))))
  18.     profit = deposit * (1+interest_rate/(12*100))**amount_months - deposit
  19.    
  20.     return profit
  21. #вывести результат
  22. print('%4d' % round(profit))
Add Comment
Please, Sign In to add comment