Python|十进制logical_or() 方法
Decimal#logical_or() :logical_or()是一个 Decimal 类方法,它返回两个 Decimal 值的数字或。
Syntax: Decimal.logical_or()
Parameter: Decimal values
Return: the digit-wise or of the two (logical) of the Decimal values.
代码 #1:logical_or() 方法的示例
# Python Program explaining
# logical_or() method
# loading decimal library
from decimal import *
# Initializing a decimal value
a = Decimal('0')
b = Decimal('1')
# printing Decimal values
print ("Decimal value a : ", a)
print ("Decimal value b : ", b)
# Using Decimal.logical_or() method
print ("\n\nDecimal a with logical_or() method : ", a.logical_or(b))
print ("Decimal b with logical_or() method : ", b.logical_or(b))
输出 :
Decimal value a : 0
Decimal value b : 1
Decimal a with logical_or() method : 1
Decimal b with logical_or() method : 1
代码 #2:logical_or() 方法的示例
# Python Program explaining
# logical_or() method
# loading decimal library
from decimal import *
# Initializing a decimal value
a = Decimal('1')
b = Decimal('0')
# printing Decimal values
print ("Decimal value a : ", a)
print ("Decimal value b : ", b)
# Using Decimal.logical_or() method
print ("\n\nDecimal a with logical_or() method : ", a.logical_or(a))
print ("Decimal b with logical_or() method : ", a.logical_or(b))
输出 :
Decimal value a : 1
Decimal value b : 0
Decimal a with logical_or() method : 1
Decimal b with logical_or() method : 1