清华大佬耗费三个月吐血整理的几百G的资源,免费分享!....>>>
有时需要将主机名转换成对应的IP地址,例如快速查询域名。假如将域名改一个不存在的域名,try-except块会捕捉错误,向用户显示一个错误信息。
import socket def get_remote_machine_info(): remote_host = 'www.python.org' try: print "IP address:%s" %socket.gethostbyname(remote_host) except socket.error,err_msg: print "%s:%s"%(remote_host,err_msg) if __name__ == "__main__": get_remote_machine_info()