Python 从链接里提取域名

1 导入包

import urlparse
2

first_url = ‘https:zhplz.com’
domain = urlparse.urlparse(first_url).netloc
print domain

你可能感兴趣的:(python)