你可以使用Python的BeautifulSoup库来解析HTML文档,并提取<title>标签的内容。以下是一个示例代码:
from bs4 import BeautifulSoup
html_doc = "<html><head><title>这是标题</title></head><body></body></html>"
soup = BeautifulSoup(html_doc, 'html.parser')
title_tag = soup.title
if title_tag is not None:
title = title_tag.string
print(title)
else:
print("未找到<title>标签")
这段代码首先创建了一个BeautifulSoup对象,然后使用该对象的title属性获取<title>标签。如果找到了<title>标签,则可以通过title_tag.string获取标签内的文本内容。最后,将标题打印出来。
关于BeautifulSoup库的更多信息和用法,请参考腾讯云的相关产品介绍链接地址:BeautifulSoup库介绍
领取专属 10元无门槛券
手把手带您无忧上云