python 数字转十六进制_在Python中将整数转换为十六进制
In Python I want to tranform the integer 3892 into a hexcode with the given format and the result \x00\x00\x0F\x34. How can this be achieved?
解決方案
You are converting to a binary representation of the number, not so much a hex representation (although Python will display the bytes as hex). Use the struct module for such conversions.
Demonstration:
>>> struct.pack('>I', 3892)
'\x00\x00\x0f4'
>>> struct.pack('>I', 4314)
'\x00\x00\x10\xda'
Note that the ASCII code for '4' is 0x34, python only displays bytes with a \x escape if it is a non-printable character. Because 0x34 is printable, python outputs that as 4 instead.
'>' in the formatting code above means 'big endian' and 'I' is an unsigned int conversion (4 bytes).
總結
以上是生活随笔為你收集整理的python 数字转十六进制_在Python中将整数转换为十六进制的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: 成都python数据分析师职业技能_想成
- 下一篇: websocket python爬虫_p