标签: python-3.x hex byte
我正在尝试将整数转换为十六进制,但我希望它以字节为对象。例如: 输入:62353 输出:b'f391'
答案 0 :(得分:0)
通过使用int(62353).to_bytes(length = 2,byteorder ='big')解决了