python 将十进制转换为十六进制

发布于 2024-08-10 05:02:55 字数 232 浏览 6 评论 0原文

我在 python 中构建服务器,我需要将十进制值转换为十六进制,如下

所示:假设数据包以 4 个字节开头,这定义了数据包长度: 00 00 00 00 如果 len(packet) = 255 我们将发送: 00 00 00 ff

现在我的问题是,有时数据包大于 256,例如 336,那么它将是: 00 00 01 50

我不知道如何在 python 中做到这一点,我将非常感谢任何帮助。 谢谢 !

Im building a server in python, i need to convert a decimal value to hex like this :

let's say the packet start by 4 bytes which define the packet lenght :
00 00 00 00
if the len(packet) = 255 we would send :
00 00 00 ff

Now my problem is that sometimes the packet is bigger than 256 as for example 336, then it would be :
00 00 01 50

i dont know how to do that in python, and i will really appreciate any help.
Thanks !

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

野心澎湃 2024-08-17 05:02:55
>>> import struct
>>> struct.pack(">i", 336)
'\x00\x00\x01P'

struct 模块 将 Python 值打包和解包为字节。 “>i” 格式表示大端 4 字节整数。

>>> import struct
>>> struct.pack(">i", 336)
'\x00\x00\x01P'

The struct module packs and unpacks python values into bytes. The ">i" format means big-endian 4-byte integer.

沉溺在你眼里的海 2024-08-17 05:02:55

样本怎么样

"%0.8x" % data

>>> print "%0.8x" % 366
0000016e

>>> print "%0.8x" % 336
00000150

What about

"%0.8x" % data

Sample:

>>> print "%0.8x" % 366
0000016e

>>> print "%0.8x" % 336
00000150
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文