标签: python logical-operators
x = 100 y = 200 z = x and y print (z)
我想问这是什么类型的?
它不是按位的。 Python给了我200。如何?