gpt4 book ai didi

python - 如何在 Python 中获得两个变量的逻辑异或?

转载 作者:IT老高 更新时间:2023-10-28 12:01:10 25 4
gpt4 key购买 nike

您如何获得 logical xor Python 中的两个变量?

例如,我有两个变量,我希望它们是字符串。我想测试其中只有一个包含 True 值(不是 None 或空字符串):

str1 = raw_input("Enter string one:")
str2 = raw_input("Enter string two:")
if logical_xor(str1, str2):
print "ok"
else:
print "bad"

^ 运算符似乎是按位的,并没有在所有对象上定义:

>>> 1 ^ 1
0
>>> 2 ^ 1
3
>>> "abc" ^ ""
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
TypeError: unsupported operand type(s) for ^: 'str' and 'str'

最佳答案

如果您已经将输入标准化为 bool 值,则 != 是异或。

bool(a) != bool(b)

关于python - 如何在 Python 中获得两个变量的逻辑异或?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/432842/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com