Skip to content

Instantly share code, notes, and snippets.

@mikhailnov
Created October 31, 2022 13:48
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mikhailnov/e6a7f718218ca9471c01e4606d1c8397 to your computer and use it in GitHub Desktop.
Save mikhailnov/e6a7f718218ca9471c01e4606d1c8397 to your computer and use it in GitHub Desktop.
Калькулятор доходности накопительного счета или вклада с ежемесячной капитализацией
#!/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