首页 > 编程 > Python > 正文

Python实现的简单dns查询功能示例

2020-01-04 17:13:23
字体:
来源:转载
供稿:网友

本文实例讲述了Python实现的简单dns查询功能。分享给大家供大家参考,具体如下:

#!/usr/bin/pythonimport sys,socketdef print_array(*arr):    array = arr    for item in array:        print item[4][0]print '''this script is for host resolveprint "now this begin...if you want to leave,please input "break"'''while 1:    try:        host = raw_input("please input the host: ")    except KeyboardInterrupt:        print "/n",        continue    except :        print "/n",        continue    if host == "break" or host == "":        break    result = socket.getaddrinfo(host,None,0,socket.SOCK_STREAM)    print_array(*result)

希望本文所述对大家Python程序设计有所帮助。

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表