12-Python-‘and‘与&的区别
and 与&
逻辑运算
在处于逻辑运算中时,and和&的作用是等价的,譬如给两个变量True,用and和&的返回结果都为True
result1=True
result2=True
result3=False
print("result1与result2进行and运算结果为: ",result1 and result2)
print("result1与result2进行&运算结果为: ",result1 & result2)
print("result1与result3进行and运算结果为: ",result1 and result3)
print("result1与result3进行&运算结果为: ",result1 & result3)
程序运行结果如下
result1与result2进行and运算结果为: True
result1与result2进行&运算结果为: True
result1与result3进行and运算结果为: False
result1与result3进行&运算结果为: False
数值运算
当被运算变量为数值变量时,and会将前后变量进行比较,如果变量值不为0,则逻辑比较值为1,而&会将数值转换为二进制进行按位运算
- 1 and 2,返回值为2
- 1 & 2: 由于1的二进制为01,而2的进制为10,所以进行逻辑与运算后为00,返回值为数字0
- 1 & 3: 由于1的 二进制为01,而3的二进制为11,所以进行逻辑与运算后为01,返回值为数字1
具体代码如下:
result1=1
result2=2
result3=3
print("result1与result2进行and运算结果为: ",result1 and result2)
print("result1与result2进行&运算结果为: ",result1 & result2)
print("result1与result3进行and运算结果为: ",result1 and result3)
print("result1与result3进行&运算结果为: ",result1 & result3)
运行结果如下
result1与result2进行and运算结果为: 2
result1与result2进行&运算结果为: 0
result1与result3进行and运算结果为: 3
result1与result3进行&运算结果为: 1
应用场景
随机生成一个数组,筛选出数组中大于50的偶数,用两行表示
a=np.array([random.randint(0,100) for i in range(10)])
b=a[(a>50)&(a%2==0)]