Open In App

Python | Decimal logical_xor() method

Last Updated : 05 Sep, 2019
Improve
Improve
Like Article
Like
Save
Share
Report

Decimal#logical_xor() : logical_xor() is a Decimal class method which returns the digit-wise exclusive or of the two Decimal values.

Syntax: Decimal.logical_xor()

Parameter: Decimal values

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

Code #1 : Example for logical_xor() method




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


Output :

Decimal value a :  0
Decimal value b :  1


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

Code #2 : Example for logical_xor() method




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


Output :

Decimal value a :  1
Decimal value b :  0


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


Like Article
Suggest improvement
Previous
Next
Share your thoughts in the comments

Similar Reads