Introduction aux concepts financiers en Python
Dakota Wixom
Quantitative Finance Analyst
Capital (avoir propre) : Part de votre versement hypothécaire qui augmente la valeur nette de la maison
Paiement d'intérêts (${IP}_{Periodic}$)
$ = RMB * R_{Periodic} $
Paiement de capital (${PP}_{Periodic}$)
$ = {MP}_{Periodic} - {IP}_{Periodic} $
Exemple :
accumulator = 0
for i in range(3):
if i == 0:
accumulator = accumulator + 3
else:
accumulator = accumulator + 1
print(str(i)+": Loop value: "+str(accumulator))
0: Loop value: 3
1: Loop value: 4
2: Loop value: 5
Introduction aux concepts financiers en Python