python获取本机外网ip的方法
本文实例讲述了python获取本机外网ip的方法。分享给大家供大家参考。具体如下:
python从显示ip地址的网站获取本机外网ip,这段python代码抓取网站上的ip地址信息
import urllib import re print "we will try to open this url, in order to get IP Address" url = "http://checkip.dyndns.org" print url request = urllib.urlopen(url).read() theIP = re.findall(r"\d{1,3}\.\d{1,3}\.\d{1,3}.\d{1,3}",request) print "your IP Address is: ", theIP
希望本文所述对大家的Python程序设计有所帮助。
相关推荐
huavhuahua 2020-11-20
weiiron 2020-11-16
cakecc00 2020-11-15
千锋 2020-11-15
JakobHu 2020-11-14
guangcheng 2020-11-13
xirongxudlut 2020-11-10
solarLan 2020-11-09
pythonxuexi 2020-11-08
文山羊 2020-11-07
susmote 2020-11-07
wuShiJingZuo 2020-11-05
Pythonjeff远 2020-11-06
jacktangj 2020-11-04
lousir 2020-11-04
FlySky 2020-11-02
Noneyes 2020-11-10
ailxxiaoli 2020-11-16
chensen 2020-11-14