如何在Python 3.2中删除消息的开头和结尾

时间:2014-12-31 17:33:50

标签: string python-3.x serial-port

我正在向python 3.2发送消息。

  

VT = 10000

当3.2获得它时,它会增加:

  

B' VT = 10000'

我发送此命令的电机不了解额外的东西。 如何摆脱b和'

我试图使用

  

string.strip()

但也许我错了。

1 个答案:

答案 0 :(得分:0)

b'正在显示,因为在某些时候您将bytes对象视为str

>>> incoming = b'vt10000'
>>> command = '%s' % incoming
>>> print(repr(command))
"b'vt10000'"