将十六进制 MAC 地址转换为用户可读格式 (Python)

发布于 2024-09-14 19:19:54 字数 152 浏览 5 评论 0原文

我从套接字接收到以下格式的 MAC 地址: 0024e865a023(使用 receive-string.encode("hex") 从二进制转换为十六进制)

我想将其转换为用户可读的格式,如下所示: 00-24-e8-65-a0-23

有什么简单的方法吗?

I'm receiving from the socket a MAC address in this format:
0024e865a023 (hex converted from binary with received-string.encode("hex"))

I would like to convert it to a user readable format like this :
00-24-e8-65-a0-23

Any easy way to do so?

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

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

发布评论

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

评论(1

不甘平庸 2024-09-21 19:19:54

您可以将 MAC 地址分成每个块的数组,然后将它们连接到 - 上:

mac = '0024e865a023'
blocks = [mac[x:x+2] for x in xrange(0, len(mac), 2)]
macFormatted = '-'.join(blocks)

You can break apart the MAC address into an array of each block, and then join them on -:

mac = '0024e865a023'
blocks = [mac[x:x+2] for x in xrange(0, len(mac), 2)]
macFormatted = '-'.join(blocks)
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文