赞
踩
通过进入网站:http://myip.ipip.net获取本机ip地址
代码实现:
- import requests
- res = requests.get('http://myip.ipip.net', timeout=5).text
- print(res)
也可以在终端cmd中用如下代码实现;
curl http://myip.ipip.net
获取局域网ip
- import socket
- # 函数 gethostname() 返回当前正在执行 Python 的系统主机名
- res = socket.gethostbyname(socket.gethostname())
- print(res)
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。