使用python2,类似如下操作。
>>> import socket >>> import struct >>> socket.ntohl(struct.unpack("=I", socket.inet_aton("10.0.0.3"))[0]) 167772163L >>> socket.inet_ntoa(struct.pack("=I", socket.htonl(167772163))) '10.0.0.3' >>>