我是靠谱客的博主 失眠人生,最近开发中收集的这篇文章主要介绍BeautifulSoup 执行tds=tr.findall(“td“)报错,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

先说结论:拼写大小写错误。BeatufulSoup并没有findall(),但有findAll()。

而BS4推荐使用find_all(),这个findAll仅仅是为了兼容BS3,

事情是这样的:

soup = BeautifulSoup(html, 'html.parser')
trs = soup.find(id="grid").find("tbody").findAll("tr")
for tr in trs:
    tds=tr.findall("td")

BeautifulSoup 执行tds=tr.findall("td")报错: TypeError: 'NoneType' object is not callable

换成findChildren则成功:

soup = BeautifulSoup(html, 'html.parser')
trs = soup.find(id="grid").find("tbody").findAll("tr")
for tr in trs:
    tds = tr.findChildren()

一阵莫名奇怪,排查才发现,原来是大小写拼写错误。

最后

以上就是失眠人生为你收集整理的BeautifulSoup 执行tds=tr.findall(“td“)报错的全部内容,希望文章能够帮你解决BeautifulSoup 执行tds=tr.findall(“td“)报错所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(46)

评论列表共有 0 条评论

立即
投稿
返回
顶部