gpt4 book ai didi

python - Python 3 中的德摩根定律

转载 作者:太空宇宙 更新时间:2023-11-04 05:43:27 25 4
gpt4 key购买 nike

根据德摩根定律:

¬(P ˄ Q) ↔ (¬P) ˅ (¬Q)
¬(P ˅ Q) ↔ (¬P) ˄ (¬Q)

在 Python 3.5 中运行时:

A = True
B = True
x = not(A and B)==(not A) or (not B)
y = not(A or B)==(not A) and (not B)
print('x is :', x, '\ny is :' ,y)

返回:

x is : True 
y is : False

问题:为什么 y 为 False?

最佳答案

尝试添加一些括号 - == 的优先级高于 or

这是 precedence table

关于python - Python 3 中的德摩根定律,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33093618/

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