关于字符串:python中&:’str’和’bytes’的不支持的操作数类型

Unsupported operand types for &: 'str' and 'bytes' in python

本问题已经有最佳答案,请猛点这里访问。
1
2
3
4
5
if(msg.topic =="abc" & msg.payload == b'1'):
     print("Loop entered")


TypeEror: unsupported operand types for &: 'str' and 'bytes'


and是我们用python编写连词的方法,因此:

1
if msg.topic =="abc" and msg.payload == b'1':