gpt4 book ai didi

python - 随机 NoneType 对象不可调用错误

转载 作者:太空宇宙 更新时间:2023-11-04 06:27:03 24 4
gpt4 key购买 nike

最近我在我的应用程序中遇到了这个问题:

File "main.py", line 31, in File "app.pyc", line 205, in run TypeError: 'NoneType' object is not callable"

我的代码:

xml = EXML()
for pid, product in store.products.items():
xml.addRow()
xml.addCell((product['name']).encode('utf-8'), "String")
xml.addCell((product['symbol']).encode('utf-8'), "String")
xml.addCell((product['brand_name']).encode('utf-8'), "String") # line 205
xml.addCell(str(product['price']), "String")

Python 2.7 32 位

它是有线的,因为它在大约 1000 次迭代后出现,没有任何以前的问题。此应用程序扫描在线商店以获取当前价格。首先我认为我错过了一些东西,结果是 None.encode('utf-8'),但是没有,而且“”.encode('utf-8') 似乎有效.此外,我无法在测试站点上重现此错误,只是在努力使用 ~2500 种产品时有时会出现。此错误的其他可能来源是什么?

最佳答案

>>> None.encode
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
AttributeError: 'NoneType' object has no attribute 'encode'
>>> None()
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
TypeError: 'NoneType' object is not callable

在给定的行上,您必须以某种方式将调用的两个函数之一设置为 None。您确定这不是下一行吗,因为覆盖 str 是一个相当常见的错误。

关于python - 随机 NoneType 对象不可调用错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7213254/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com