linux:

   
   
   
   
  1. import socket 
  2. import fcntl 
  3. import struct 
  4. def get_ip_address(ifname): 
  5.     s = socket.socket(socket.AF_INET, socket.SOCK_DGRAM) 
  6.     return socket.inet_ntoa(fcntl.ioctl( 
  7.         s.fileno(), 
  8.         0x8915,  # SIOCGIFADDR 
  9.         struct.pack('256s', ifname[:15]) 
  10.     )[20:24]) 
  11.  
  12. #get_ip_address('lo')环回地址 
  13. #get_ip_address('eth0')主机ip地址 

windows:

   
   
   
   
  1. import re,urllib2 
  2. from subprocess import Popen, PIPE 
  3.     print "本机的私网IP地址为:" + re.search('\d+\.\d+\.\d+\.\d+',Popen('ipconfig', stdout=PIPE).stdout.read()).group(0
  4.     print "本机的公网IP地址为:" + re.search('\d+\.\d+\.\d+\.\d+',urllib2.urlopen("http://www.7qiao.cn/ip.php").read()).group(0