1、Bs4_Tag.contents 将标签转化为list
2、
soup.prettify() 将soup中的内容以标签的形式打印出来
3、调用tag的 find_all() 方法时,Beautiful Soup会检索当前tag的所有子孙节点,如果只想搜索tag的直接子节点,可以使用参数 recursive=False
一段简单的文档:
<html>
<head>
<title>
The Dormouse's story
</title>
</head>
是否使用 recursive 参数的搜索结果:
soup.html.find_all("title")
# [<title>The Dormouse's story</title>]
soup.html.find_all("title", recursive=False)
# []