AttributeError: 'int' object has no attribute 'n'
时间: 2023-08-06 12:08:20 浏览: 170
PyQt学习随笔:自定义信号连接时报AttributeError: ‘PyQt5.QtCore.pyqtSignal’ object has no attribute ‘connect’
5星 · 资源好评率100%
报错信息中指出了错误的位置和原因。具体来说,错误出现在`r.zadd('week_charm:2022-4:542:zset', a, x)`这行代码,错误原因是`'int' object has no attribute 'items'`,意味着`int`类型没有`items`属性。为了解决这个问题,可以将`a`和`x`的数据类型转换为`str`类型。
阅读全文