Python 3-从beautifulSoup中的标签获取文本

Python 3-从beautifulSoup中的标签获取文本,第1张

Python 3-从beautifulSoup中的标签获取文本
  1. 您可以使用

    text
    string
    属性元素

    elems = soup.find_all(True, class_='template_title')

    print([elem.string for elem in elems])

    prints
    ['4']
    for the given html snippet
  2. 根据需要指定更多属性:

    elems = soup.find_all(True, class_='template_title',       height='50', valign='bottom', width='535')


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/5632477.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-12-15
下一篇 2022-12-16

发表评论

登录后才能评论

评论列表(0条)

保存