x =200
if(x>=0 & x<100):
print(1)
elif(x>=100 & x<1000):
print(2)
结果竟然是1
and or not运算才是正确的
https://blog.csdn.net/weixin_40041218/article/details/80868521
x =200
if(x>=0 & x<100):
print(1)
elif(x>=100 & x<1000):
print(2)
结果竟然是1
and or not运算才是正确的
https://blog.csdn.net/weixin_40041218/article/details/80868521