📜  beutiful soup 所有标签 - 任何代码示例

📅  最后修改于: 2022-03-11 14:59:58.229000             🧑  作者: Mango

代码示例1
head_tag = soup.head
head_tag
# The Dormouse's story

head_tag.contents
# [The Dormouse's story]

title_tag = head_tag.contents[0]
title_tag
# The Dormouse's story
title_tag.contents
# ['The Dormouse's story']