Loading [MathJax]/jax/input/TeX/config.js
腾讯云
开发者社区
文档
建议反馈
控制台
登录/注册
首页
学习
活动
专区
圈层
工具
MCP广场
文章/答案/技术大牛
搜索
搜索
关闭
发布
首页
学习
活动
专区
圈层
工具
MCP广场
返回腾讯云官网
报错'NoneType' object has no attribute 'find_all'?
写回答
关注问题
社区首页
>
问答首页
>
报错'NoneType' object has no attribute 'find_all'?
问
报错'NoneType' object has no attribute 'find_all'?
提问于 2020-07-10 03:18:12
回答 0
关注 0
查看 1.9K
python
写回答
关注问题
分享
举报
回答
成为首答用户。去
写回答
相关文章
AttributeError: NoneType object has no attribute‘’
attributeerror
nonetype
object
text
AttributeError: ‘NoneType’ object has no attribute ‘text’
狼啸风云
2020/10/09
3.7K
0
AttributeError: 'NoneType' object has no attribute 'append'
jquery
附加列表元素时发生的错误,去掉赋值,把第四十行改为re_bb_area.append(proportion)
狼啸风云
2019/05/15
2.7K
0
pyinstaller打包报错AttributeError: 'NoneType' object has no attribute 'get_filename'
python
ModuleNotFoundError: No module named 'text_unidecode'
大大刺猬
2022/03/30
2.8K
2
解决AttributeError: ‘NoneType‘ object has no attribute ‘array_interface‘
2023腾讯·技术创作特训营 第二期
在使用NumPy进行数组计算时,有时会遇到"AttributeError: 'NoneType' object has no attribute 'array_interface'"的错误。这个错误通常是由于数组对象为None引起的。在本篇文章中,我们将介绍这个错误的原因,并提供解决方法。
大盘鸡拌面
2023/10/14
1.5K
0
Unable to find chromedriver...AttributeError: ‘NoneType‘ object has no attribute ‘get‘
python
Unable to find chromedriver…AttributeError: ‘NoneType’ object has no attribute ‘get’
谙忆
2021/01/19
837
0
pip 18.0 install fails with AttributeError: 'NoneType' object has no attribute 'bytes'
pycharm
是由pycharm创建venv的方式造成的 python -m pip install -U --force-reinstall pip
马哥Python
2019/08/13
527
0
解决方法:opencv读取中文路径图像报错 | AttributeError: ‘NoneType‘ object has no attribute ‘astype‘
numpy
在使用开源项目 blind_watermark 给图像添加数字盲水印时,传入图像路径中文时,会出现以上报错。分析它的源码:
叶庭云
2022/05/09
939
0
'DataFrame' object has no attribute 'sort'
编程算法
原码 import tushare as ts df = ts.profit_data(top=60) df.sort('shares',ascending=False) 报错 AttributeError:'DataFrame' object has no attribute 'sort' 解决:将“sort”改为“sort_values” import tushare as ts df = ts.profit_data(top=60) df.sort_values('shares',ascen
周小董
2019/03/25
2.7K
0
ResultSet object has no attribute ‘text‘
beautifulsoup
object
text
就报错:ResultSet object has no attribute 'text’后面一大堆 解决:
川川菜鸟
2021/10/18
849
0
[已解决]Series object has no attribute explode
attributeerror
explode
object
pandas
series
0 [1, 2, 3] 1 foo 2 [] 3 [3, 4] dtype: object
hankleo
2020/09/17
1.6K
0
启动 celery worker 报错:AttributeError: 'str' object has no attribute 'items'
pip
redis
日志
错误日志 (joyoo) yinzhuoqundeMacBook-Pro:joyoo yinzhuoqun$ python manage.py celery worker --loglevel=info raven.contrib.django.client.DjangoClient: 2019-12-15 02:07:00,997 /Users/yinzhuoqun/.pyenv/joyoo/lib/python3.6/site-packages/raven/base.py [line:213] INF
卓越笔记
2023/02/18
569
0
[934]AttributeError: ‘Series‘ object has no attribute ‘sort‘
https
网络安全
编程算法
python
参考:https://blog.csdn.net/welcome_yu/article/details/102492386
周小董
2021/01/29
1.8K
0
python多线程下报错:AttributeError: 'module' object has no attribute '_strptime'
编程算法
python
python 在单线程下调用 time.strptime(str,format)
静谧星空TEL
2021/04/27
1K
0
AttributeError: 'int' object has no attribute 'log'
其他
我们有时候在对组数进行操作时候,偶尔会出现这个问题. 比如: #coding:utf-8 import pandas as pd import numpy as np if __name__ == '__main__': np.random.seed(0) df = pd.DataFrame(100 + np.random.randn(100).cumsum(), columns=['weight']) df['pct_change'] = df.weight.pct_change
Gxjun
2018/03/27
2.5K
0
AttributeError: 'list' object has no attribute 'keys'
解决方案
#encoding=utf-8 import os result = {} if os.path.exists("test.txt"): day_file = open("test.txt").read() day_file_list = day_file.split(" ") for i in day_file_list: # print "i: s" + str(i) + "e" if i == "#" or " ":
hankleo
2020/09/17
3.1K
0
Django(12)项目报错AttributeError: ‘bytes’ object has no attribute ‘encode’「建议收藏」
https
java
网络安全
发布者:全栈程序员栈长,转载请注明出处:https://javaforall.cn/165048.html原文链接:https://javaforall.cn
全栈程序员站长
2022/09/19
800
0
AttributeError: 'Profiled' object has no attribute '__wraps__'
python
add
attributeerror
import
object
当测试例子的时候(例如,add(2, 3)), 会报错(AttributeError: 'Profiled' object has no attribute 'wraps')。 原因是 要先import functools, 再from functools import wraps。 究其原因,可能是functools 有 wraps所需要的某些依赖,缺少functools 可能就找不到wraps了。
lesM10
2019/08/26
647
0
AttributeError: 'module' object has no attribute 'fullmatch'.
其他
经过查找,发现出错的原因是 re库 中的 fullmatch函数 是 在py3.4之后才新添加的 。
JNingWei
2018/09/27
1.9K
0
解决AttributeError: 'DataFrame' object has no attribute 'tolist'
第二期热点征文-程序人生
当我们在处理数据分析或机器学习任务时,经常会使用Pandas库进行数据的处理和操作。而在使用Pandas的DataFrame对象时,有时可能会遇到AttributeError: 'DataFrame' object has no attribute 'tolist'的错误。 这个错误通常出现在我们尝试将DataFrame对象转换为列表(list)时。因为DataFrame是Pandas库中的一个二维数据结构,它的数据类型和操作方法与列表不同,所以没有直接的.tolist()方法。 在下面的文章中,我们将讨论如何解决这个错误。
大盘鸡拌面
2023/10/17
1.5K
0
点击加载更多
相似问题
'str' object has no attribute 'astype'?
0
176
'str' object has no attribute 'to_capabilities'?
1
3.7K
Python装饰器报错:AttributeError: 'function' object has no attribute 'im_class',如何解决?
2
3.7K
AttributeError: 'str' object has no attribute 'read_only'?
1
246
'list' object has no attribute 'argmax'求各位大神解答?
0
290
相关问答用户
请输入您想邀请的人
庆丰
新浪微博 | 高级总监
擅长4个领域
邀请回答
王新栋
邀请回答
架构师之路
到家集团 | 技术VP
擅长5个领域
邀请回答
穿过生命散发芬芳
邀请回答
大Hero
邀请回答
添加站长 进交流群
领取专属
10元无门槛券
AI混元助手
在线答疑
关注
腾讯云开发者公众号
洞察
腾讯核心技术
剖析业界实践案例
领券
问题归档
专栏文章
快讯文章归档
关键词归档
开发者手册归档
开发者手册 Section 归档
不再提示