Open In App

Python | Decimal next_plus() method

Improve
Improve
Like Article
Like
Save
Share
Report

Decimal#next_plus() : next_plus() is a Decimal class method which returns the smallest representable number larger than the Decimal value.

Syntax: Decimal.next_plus()

Parameter: Decimal values

Return: the smallest representable number larger than the Decimal value.

Code #1 : Example for next_plus() method




# Python Program explaining 
# next_plus() method
  
# loading decimal library
from decimal import *
  
  
# Initializing a decimal value
a = Decimal(-1)
  
b = Decimal('0.142857')
  
# printing Decimal values
print ("Decimal value a : ", a)
print ("Decimal value b : ", b)
  
  
# Using Decimal.next_plus() method
print ("\n\nDecimal a with next_plus() method : ", a.next_plus())
  
print ("Decimal a with next_plus() method : ", a.next_plus())
  
print ("Decimal b with next_plus() method : ", b.next_plus())


Output :

Decimal value a :  -1
Decimal value b :  0.142857


Decimal a with next_plus() method :  -0.9999999999999999999999999999
Decimal a with next_plus() method :  -0.9999999999999999999999999999
Decimal b with next_plus() method :  0.1428570000000000000000000001

Code #2 : Example for next_plus() method




# Python Program explaining 
# next_plus() method
  
# loading decimal library
from decimal import *
  
  
# Initializing a decimal value
a = Decimal('-3.14')
  
b = Decimal('321e + 5')
  
# printing Decimal values
print ("Decimal value a : ", a)
print ("Decimal value b : ", b)
  
  
# Using Decimal.next_plus() method
print ("\n\nDecimal a with next_plus() method : ", a.next_plus())
  
print ("Decimal a with next_plus() method : ", a.next_plus())
  
print ("Decimal b with next_plus() method : ", b.next_plus())


Output :

Decimal value a :  -3.14
Decimal value b :  3.21E+7


Decimal a with next_plus() method :  -3.139999999999999999999999999
Decimal a with next_plus() method :  -3.139999999999999999999999999
Decimal b with next_plus() method :  32100000.00000000000000000001


Last Updated : 09 Sep, 2019
Like Article
Save Article
Previous
Next
Share your thoughts in the comments
Similar Reads