两个操作数进行and运算或or运算,其结果一定是布尔值true或者false吗
不一定,整数运算,是按位的比如说1 or 3 = 3, 1 and 3 = 11 or 2 = 3, 1 and 2 = 01 or 1 = 1, 1 and 1 = 1...