Saturday, September 6, 2025
HomeLanguagesnumpy.nper() in Python

numpy.nper() in Python

numpy.pmt(rate, pmt, pv, fv, when = ‘end’) : This financial function helps user to compute number of periodic payments.

Parameters :
rate : [scalar or (M, )array] Rate of interest as decimal (not per cent) per period
pmt : [scalar or (M, )array] Payment value
fv : [scalar or (M, )array] Future value
pv : [scalar or (M, )array] present value
when : at the beginning (when = {‘begin’, 1}) or the end (when = {‘end’, 0}) of each period. Default is {‘end’, 0}.

Return : Number of periodic payments.

Equation being solved :

fv + pv*(1+rate)**nper + pmt*(1 + rate*when)/rate*((1 + rate)**nper – 1) == 0

or when rate == 0
fv + pv + pmt * nper == 0

Code:




# 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)) 


Output:

Solution - No. of periods : 215.905777 months
Dominic
Dominichttp://wardslaus.com
infosec,malicious & dos attacks generator, boot rom exploit philanthropist , wild hacker , game developer,
RELATED ARTICLES

Most Popular

Dominic
32270 POSTS0 COMMENTS
Milvus
82 POSTS0 COMMENTS
Nango Kala
6639 POSTS0 COMMENTS
Nicole Veronica
11803 POSTS0 COMMENTS
Nokonwaba Nkukhwana
11869 POSTS0 COMMENTS
Shaida Kate Naidoo
6752 POSTS0 COMMENTS
Ted Musemwa
7029 POSTS0 COMMENTS
Thapelo Manthata
6704 POSTS0 COMMENTS
Umr Jansen
6721 POSTS0 COMMENTS