####一、解析
html = "xxx" //Html数据来源soup = BeautifulSoup(html,"html.parser") //第二个参数代表解析的框架复制代码
//全本搜索标签P的,并且class是text bottom-dis-8的所有标签,返回Tagsoup.find_all("p","text bottom-dis-8")复制代码
//可以用contents属性获取tag下的子tagtag.contents[0]复制代码
//Tag的文本信息tag.text 复制代码