Python|十进制 next_plus() 方法
Decimal#next_plus() : next_plus()是一个 Decimal 类方法,它返回大于 Decimal 值的最小可表示数字。
Syntax: Decimal.next_plus()
Parameter: Decimal values
Return: the smallest representable number larger than the Decimal value.
代码 #1:next_plus() 方法的示例
# 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())
输出 :
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
代码 #2:next_plus() 方法的示例
# 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())
输出 :
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