a = 7
if 0 << a << 10:
print('a is greater than or equal to 0 and less than or equal to 10')
else:
print('a is not greater than or equal to 0 and less than or equal to 10')
它总是打印出来
a is not greater than or equal to 0 and less than or equal to 10
.为什么会这样?到底是什么
0 << a << 10
工作
a = 7
if 0 <= a <= 10:
print('a is greater than or equal to 0 and less than or equal to 10')
else:
print('a is not greater than or equal to 0 and less than or equal to 10')