[Python2.7] [爬虫] [BeautifulSoup],如图,使用soup.find()查找到目标后,怎样提取其中的content?

2024-12-21 16:16:51
推荐回答(2个)
回答1:

方法1.==》不用find ,直接 print soup.meta['content']
方法2.==》print meta['content']
ps:注意页面有多个meta 标签的情况

回答2:

Print meta.content