& | and or
Posted rvin
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了& | and or相关的知识,希望对你有一定的参考价值。
qqq = 10 & 5 # 因为10二进制1010 5二进制0101 &的符号是有0出0
print(qqq)
输出:0
qqq = 10 and 5 # and 是输出两个中比较小的 or是输出大的
print(qqq)
输出:5
qqq = 10 | 5 # 因为10二进制1010 5二进制0101 |的符号是有1出1
print(qqq)
15 # 15的二进制是1111
qqq = 10 or 5 # or是输出大的
print(qqq)
10
以上是关于& | and or的主要内容,如果未能解决你的问题,请参考以下文章