首页 > 代码库 > Python的Internet标准库1

Python的Internet标准库1

urlparse分解URL

 1 #!/usr/bin/env python 2 # -*- coding: utf-8 -*- 3  4 from urlparse import urlparse 5  6 url = http://www.baidu.com 7  8 parsed = urlparse(url) 9 10 print parsed

 

Python的Internet标准库1