Python、Kivy - 在 Popup 中使用创建的模块时出现问题(无法识别)
在我的应用程序中,可以收集硬币来解锁新的背景和服装,为此我使用了一个名为 packData 的单独模块。 问题是正常运行应用程序时无法识别 packData。如…
属性错误:模块“matplotlib.cm”没有属性“RdylBu”;
这段代码基本上是试图绘制平行坐标。由于结果是连续变量,因此要查看每行数据的结果模式;需要根据结果分配色调。本书使用plot.cm.RdYlBu来处理类似的…
str = str.split(",") AttributeError: 'NoneType'对象没有属性“split”;为遇到此错误的在线游戏构建客户端
class Player(): def __init__(self, x, y, width, height, color): self.x = x self.y = y self.width = width self.height = height self.color = c…
如何修复 /login/“NoneType”处的 AttributeError对象没有属性“lower”;
我正在尝试在 Django 中创建一个登录表单。在该表单中,有 2 个字段,用户名和登录密码。现在我在获取用户名时使用了lower()。看看下面的代码。我使用…
在异步函数中使用cloudscraper对象时出现AttributeError
import cloudscraper import requests import asyncio async def scrape_prices(): scraper_object = cloudscraper.create_scraper() async with scra…
for (k, v) in data_dict.items: AttributeError: 'list'对象没有属性“items”; --
我正在尝试使用 data_dict 中的 json 数据,并在 for 循环中使用它在 k 和 v 的帮助下将 json 数据分离到不同的属性中。但是我对上面的 AttributeErro…
scrapy 蜘蛛由于 TypeError 无法启动
我正在尝试使用我在其他项目上成功部署的代码为德国二手产品网站构建一个 scrapy 蜘蛛。然而这一次,我遇到了类型错误,但我似乎不明白为什么。 与这…
如何修复“错误:模块‘cv2’”没有属性“legacy”;在 python 3.7.9 和 Windows 11 上”?
我安装了 OpenCV 版本 4.5.2.52 来尝试对我想阅读但太模糊的图片使用超分辨率。 为此,我遵循此站点中的代码: https ://programmer.group/opencv-adv…
python 对象初始化期间属性错误
蟒蛇2.6.7; Windows 7 用 Python 解决 Deitel“简单编译器”练习。存储库位于 github。编写测试套件。 module compiler.py class SCompiler( object …
为什么我会收到 AttributeError: 'NoneType'对象没有属性“某物”?
我收到一条错误消息,内容为 AttributeError: 'NoneType' object has no attribute 'something' 我如何理解此消息? 哪些一般情况可能会导致此类 Attr…
Python Crawler - AttributeError:Crawler 实例没有属性“url”;
我正在尝试学习 python 中的课程: #!/usr/bin/env python # *-* coding: utf-8 *-* import urllib2 from BeautifulSoup import BeautifulSoup as bs …
属性错误:“按钮”对象没有属性“set”; - tkinter
我收到错误: self.button.set(str(self)) AttributeError: 'Button' object has no attribute 'set' 我不知道要更改什么才能使其正常工作。 这是代码…
YouTube Gdata 在 Python 中没有平均评分
当查找 YouTube 视频的平均评分和评分者数量时,此方法非常有效。 #!/usr/bin/python import sys from gdata.youtube.service import YouTubeService …
Django 序列化器错误:“NoneType”对象没有属性“_meta”;
我最近发现了大量用于 JSON 序列化 Django 中各种对象的代码。不幸的是,当代码遇到某些类型的模型时,它会抛出 AttributeError 。 这是我试图诊断和…