Friday, November 21, 2025
HomeLanguagesPython | Decimal logical_and() method

Python | Decimal logical_and() method

Decimal#logical_and() : logical_and() is a Decimal class method which returns the digit-wise and of the two (logical) Decimal values.

Syntax: Decimal.logical_and()

Parameter: Decimal values

Return: the digit-wise and of the two (logical) Decimal values.

Code #1 : Example for logical_and() method




# Python Program explaining 
# logical_and() 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_and() method
print ("\n\nDecimal a with logical_and() method : ", a.logical_and(b))
  
print ("Decimal b with logical_and() method : ", b.logical_and(b))


Output :

Decimal value a :  0
Decimal value b :  1


Decimal a with logical_and() method :  0
Decimal b with logical_and() method :  1

Code #2 : Example for logical_and() method




# Python Program explaining 
# logical_and() 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_and() method
print ("\n\nDecimal a with logical_and() method : ", a.logical_and(a))
  
print ("Decimal b with logical_and() method : ", a.logical_and(b))


Output :

Decimal value a :  1
Decimal value b :  0


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

Most Popular

Dominic
32405 POSTS0 COMMENTS
Milvus
97 POSTS0 COMMENTS
Nango Kala
6781 POSTS0 COMMENTS
Nicole Veronica
11928 POSTS0 COMMENTS
Nokonwaba Nkukhwana
11997 POSTS0 COMMENTS
Shaida Kate Naidoo
6907 POSTS0 COMMENTS
Ted Musemwa
7166 POSTS0 COMMENTS
Thapelo Manthata
6862 POSTS0 COMMENTS
Umr Jansen
6847 POSTS0 COMMENTS