Python 将IP转换为int

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Python 将IP转换为int相关的知识,希望对你有一定的参考价值。

import socket
import struct

if __name__ == __main__:
    ip = 127.0.0.1
    int_ip = struct.unpack(!I, socket.inet_aton(ip))[0]
    print(int_ip)
    str_ip = socket.inet_ntoa(struct.pack(!I, int_ip))
    print(str_ip)

 

以上是关于Python 将IP转换为int的主要内容,如果未能解决你的问题,请参考以下文章

python之ipv4的ip转换为int数值

Python将IP转换为八进制地址

python_整型与IP地址的转换

我可以将.png数据转换为Swift中的Int吗?

Python- TypeError:无法将系列转换为 <class 'int'>

将列表项从字符串转换为int(Python)[重复]