Python实现将网站域名解析为ip地址
2021-01-22 19:16
阅读:445
标签:img class res bsp pytho src pre python int 起因 因为一些事情,需要将域名解析为ip地址,想到Python作为万能语言,就用Python来实现这个功能 代码 结果 Python实现将网站域名解析为ip地址 标签:img class res bsp pytho src pre python int 原文地址:https://www.cnblogs.com/shiyixirui/p/12886693.html
import socket
url = ‘shiyixirui.cn‘
res = socket.getaddrinfo(url, None)
print(res)
ip = res[0][4][0]
print(ip)
上一篇:JavaScript关于DMO操作的一些小问题(1)
下一篇:css样式学习
文章来自:搜素材网的编程语言模块,转载请注明文章出处。
文章标题:Python实现将网站域名解析为ip地址
文章链接:http://soscw.com/index.php/essay/45568.html
文章标题:Python实现将网站域名解析为ip地址
文章链接:http://soscw.com/index.php/essay/45568.html
评论
亲,登录后才可以留言!