📜  Python中的 numpy.nper()

📅  最后修改于: 2022-05-13 01:55:15.148000             🧑  作者: Mango

Python中的 numpy.nper()

numpy.pmt(rate, pmt, pv, fv, when = 'end')此财务函数可帮助用户计算定期付款的数量。

正在求解的方程:

代码:

# Python program explaining 
# pmt() function 
  
import numpy as np 
  
''' 
Question : 
  
how much time would it take to pay-off a loan of 
$10, 000 at 10 % annual rate of interest, if we had 
$100 to pay each month ? 
'''
  
# rate    pmt    pv 
Solution = np.nper(0.1 / 12, -100, 10000) 
  
# Here fv = 0 ; Also Default value of fv = 0 
print("Solution - No. of periods : % f months" %(Solution)) 

输出:

Solution - No. of periods : 215.905777 months