Decimal#logical_xor():logical_xor()是一个Decimal类方法,它返回两个Decimal值的按数字异或。
用法:Decimal.logical_xor()
参数:十进制值
返回:两个(逻辑)十进制值的数字和。
代码1:logical_xor()方法示例
# 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))
输出:
Decimal value a : 0 Decimal value b : 1 Decimal a with logical_xor() method : 1 Decimal b with logical_xor() method : 0
代码2:logical_xor()方法的示例
# 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))
输出:
Decimal value a : 1 Decimal value b : 0 Decimal a with logical_xor() method : 0 Decimal b with logical_xor() method : 1
相关用法
- Python Decimal min()用法及代码示例
- Python Decimal exp()用法及代码示例
- Python Decimal max()用法及代码示例
- Python Decimal ln()用法及代码示例
- Python Decimal is_nan()用法及代码示例
- Python Decimal canonical()用法及代码示例
- Python Decimal shift()用法及代码示例
- Python Decimal radix()用法及代码示例
- Python Decimal scaleb()用法及代码示例
- Python Decimal to_eng_string()用法及代码示例
- Python Decimal is_infinite()用法及代码示例
- Python Decimal is_finite()用法及代码示例
- Python Decimal as_tuple()用法及代码示例
- Python Decimal sqrt()用法及代码示例
- Python Decimal to_integral_exact()用法及代码示例
注:本文由纯净天空筛选整理自noobestars101大神的英文原创作品 Python | Decimal logical_xor() method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。