python中有将IP地址转换为十进制数的函数吗?

发布于 2024-11-25 12:51:36 字数 44 浏览 0 评论 0原文

是否有任何函数、API 或方法可以将受宠的 IP 字符串转换为十进制数字?

Is there any function or API or method that will convert a doted IP string to decimal number?

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

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

发布评论

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

评论(1

身边 2024-12-02 12:51:36

我不确定您真正想要的十进制数是多少,但请查看 socket.inet_aton。它将为您提供以网络字节顺序表示 IP 地址的二进制表示形式的字符串。如果您想从中获取常规整数,可以将 struct.unpack 与 "!I""I" 一起使用,取决于您感兴趣的字节顺序。

示例:

import socket, struct
print struct.unpack("!I", socket.inet_aton("127.0.0.1"))[0]

打印:2130706433

I'm not sure what is the decimal number you really want, but take a look at socket.inet_aton. It will give you string with binary representation of the IP address in network byte order. If you want to get a regular integer out of it, you could use struct.unpack with either "!I" or "I", depending on which byte order you're interested in.

Example:

import socket, struct
print struct.unpack("!I", socket.inet_aton("127.0.0.1"))[0]

Prints: 2130706433.

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