python中有将IP地址转换为十进制数的函数吗?
是否有任何函数、API 或方法可以将受宠的 IP 字符串转换为十进制数字?
Is there any function or API or method that will convert a doted IP string to decimal number?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我不确定您真正想要的十进制数是多少,但请查看
socket.inet_aton
。它将为您提供以网络字节顺序表示 IP 地址的二进制表示形式的字符串。如果您想从中获取常规整数,可以将 struct.unpack 与"!I"
或"I"
一起使用,取决于您感兴趣的字节顺序。示例:
打印:
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 usestruct.unpack
with either"!I"
or"I"
, depending on which byte order you're interested in.Example:
Prints:
2130706433
.