Created
October 31, 2022 13:48
-
-
Save mikhailnov/e6a7f718218ca9471c01e4606d1c8397 to your computer and use it in GitHub Desktop.
Калькулятор доходности накопительного счета или вклада с ежемесячной капитализацией
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python | |
a=100000 | |
s=12*1 | |
sum=a | |
for i in range(0, s): | |
sum=sum*(1+0.08/12) | |
print(sum-a) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment