附注: 1. Python中的按位运算符是把数字看作二进制来进行计算的.Python中的按位运算法则如下: 按位与 ( bitwise and of x and y ) & 举例: 5&3 = 1 解释: 101 11 相同位仅为个位1 ,故结果为 1 按位或 ( bitwise or of x and y ) | 举例: 5|3 = 7 解释: 101 11 出现1的位是 1 1 1,故结果为 111 按位异或 ( bitwise exclusive or of x…
作业: >>> print(5<4 or 3)3>>> print(2>1 or 6)True>>> print(5>1 and 0)0>>> print(5>1 and 0 or 1 and 0 <1>9 or 8)8>>> print(5>1 and 0 or 1 and 0 <1>9 )False ### and 返回第一个假值 或最后一个真值 or返回第一…