Use urlparse:
from urlparse import urlparse
o = urlparse("http://xxx.abcdef.com/fdfdf/")
print o
print o.netloc
In Python 3, you import urlparse like so:
from urllib.parse import urlparse
Alternatively, just use str.split():
url = "http://xxx.abcdef.com/fdfdf/"
print url.split('/')[2]
Sidenote: Here's how you write an import of urlparse that will work in either version:
if sys.version_info >= (3, 0):
from urllib.parse import urlparse
if sys.version_info < (3, 0) and sys.version_info >= (2, 5):
from urlparse import urlparse
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…