我正在向python 3.2发送消息。
VT = 10000
当3.2获得它时,它会增加:
B' VT = 10000'
我发送此命令的电机不了解额外的东西。 如何摆脱b和'
我试图使用
string.strip()
但也许我错了。
答案 0 :(得分:0)
b
和'
正在显示,因为在某些时候您将bytes
对象视为str
:
>>> incoming = b'vt10000'
>>> command = '%s' % incoming
>>> print(repr(command))
"b'vt10000'"