📅  最后修改于: 2022-03-11 14:59:58.229000             🧑  作者: Mango
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']