请求网页内容
# features : 解析器类型
result = BeautifulSoup(pagecontent,features = 'html.parser')
# 获取所有ul标签
result.find_all('ul',id='list')
Press ← or → to navigate between chapters
Press S or / to search in the book
Press ? to show this help
Press Esc to hide this help
# features : 解析器类型
result = BeautifulSoup(pagecontent,features = 'html.parser')
# 获取所有ul标签
result.find_all('ul',id='list')