📜  Python中的 numpy.pmt()

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

Python中的 numpy.pmt()

numpy.pmt(rate, nper, pv, fv, when = 'end')此财务函数可帮助用户根据本金和利息计算支付价值。

正在求解的方程:

代码:

# Python program explaining 
# pmt() function 
  
import numpy as np 
  
''' 
Question : 
  
monthly payment needed to pay off a $10, 000 loan
in 12 years at an annual interest rate of 10 %
'''
  
# rate np  pv 
Solution = np.pmt(0.10 / 12, 12 * 12,  10, 000) 
  
# Here fv = 0 ; Also Default value of fv = 0 
print("Solution : ", Solution) 

输出:

Solution :  -0.1195078262827336