python:ip地址转整数程序

#!/bin/env python
#coding: utf-8
import socket
import struct

def ip2int( ip ):
    return struct.unpack('!L',socket.inet_aton(ip))[0]

你可能感兴趣的:(python,程序,IP地址)