Python爬虫---一个爬虫

import urllib
import urllib.request
import time
con=urllib.request.urlopen('http://blog.sina.com.cn/s/articlelist_1191258123_0_1.html').read()
url=['']*50
mycon=con.decode('utf-8')
#print('mycon',mycon)
title=mycon.find('

 

你可能感兴趣的:(Python进阶)