代码:
import urlparse
url1 = 'http://try.github.io//levels/1/challenges/1'
netloc1 = urlparse.urlparse(url1)[1] #try.github.io
url2 = 'https://github.com/explore'
netloc2 = urlparse.urlparse(url2)[1] #github.com
netloc2
是我想要的,但是,我希望netloc1
是github.io
,如果使用正则表达式,如何处理它。