标签: python
我在Windows中使用python2.7。我想计算数据数组的crc值,以通过串行端口发送它。计算得出的crc值为794(int)。我必须将其转换为字节并将其附加到要发送的数据上。
我尝试过:
import struct struct.pack("<H", 794)
和bytes(794)
bytes(794)
但是得到的值是794。 如何在python 2.7中将int 794转换为字节?
答案 0 :(得分:0)
这应该有所帮助-其中n是整数
str(n).encode()