Python | Decimal logical_or() method
Last Updated :
05 Sep, 2019
Decimal#logical_or() : logical_or() is a Decimal class method which returns the digit-wise or of the two Decimal values.
Syntax: Decimal.logical_or()
Parameter: Decimal values
Return: the digit-wise or of the two (logical) of the Decimal values.
Code #1 : Example for logical_or() method
from decimal import *
a = Decimal( '0' )
b = Decimal( '1' )
print ( "Decimal value a : " , a)
print ( "Decimal value b : " , b)
print ( "\n\nDecimal a with logical_or() method : " , a.logical_or(b))
print ( "Decimal b with logical_or() method : " , b.logical_or(b))
|
Output :
Decimal value a : 0
Decimal value b : 1
Decimal a with logical_or() method : 1
Decimal b with logical_or() method : 1
Code #2 : Example for logical_or() method
from decimal import *
a = Decimal( '1' )
b = Decimal( '0' )
print ( "Decimal value a : " , a)
print ( "Decimal value b : " , b)
print ( "\n\nDecimal a with logical_or() method : " , a.logical_or(a))
print ( "Decimal b with logical_or() method : " , a.logical_or(b))
|
Output :
Decimal value a : 1
Decimal value b : 0
Decimal a with logical_or() method : 1
Decimal b with logical_or() method : 1