时间:2021-07-01 10:21:17 帮助过:27人阅读
这里给定网址,通过下面这段python代码可以很容易获取域名信息
import urlparse url = "http://www.bitsCN.com" domain = urlparse.urlsplit(url)[1].split(':')[0] print "The domain name of the url is: ", domain
输出结果如下:
The domain name of the url is: www.bitsCN.com
希望本文所述对大家的Python程序设计有所帮助。