标签: python byte bytestring
bytes
示例:
n = 257 print(n) #Prints 257 n = bytes([n]) print(n) #ValueError: bytes must be in range(0, 256)
答案 0 :(得分:5)
int
to_bytes个对象转换为字节。但是,您必须指定字节数和字节顺序。
to_bytes
n.to_bytes(2, 'little') # b'\x01\x01'