Friday, February 6, 2026
HomeLanguagesPython | Decimal logical_or() method

Python | Decimal logical_or() method

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




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


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




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


Output :

Decimal value a :  1
Decimal value b :  0


Decimal a with logical_or() method :  1
Decimal b with logical_or() method :  1
Dominic
Dominichttp://wardslaus.com
infosec,malicious & dos attacks generator, boot rom exploit philanthropist , wild hacker , game developer,
RELATED ARTICLES

Most Popular

Dominic
32489 POSTS0 COMMENTS
Milvus
126 POSTS0 COMMENTS
Nango Kala
6862 POSTS0 COMMENTS
Nicole Veronica
11983 POSTS0 COMMENTS
Nokonwaba Nkukhwana
12073 POSTS0 COMMENTS
Shaida Kate Naidoo
6995 POSTS0 COMMENTS
Ted Musemwa
7236 POSTS0 COMMENTS
Thapelo Manthata
6946 POSTS0 COMMENTS
Umr Jansen
6930 POSTS0 COMMENTS