最新回答 / 宇娃
# coding:utf8from bs4 import BeautifulSoupimport rehtml_doc = """<html><head><title>The Dormouse's story</title></head><body><p class="title"><b>The Dormouse's story</b></p><p class="story">...
2016-10-27
很感谢慕课这个平台,更感谢这位乒乓球老师,讲解的简洁明了,虽然出了不少问题,但还是成功运行了,第一个python程序,谢谢!
2016-10-26
最新回答 / qq_江仔_0
def _get_new_urls(self, curr_url, soup): new_urls = set() links = soup.find_all('a', href=re.compile(r"/item/*"))正则表达式的内容改下就行,网页格式变了
2016-10-24