TypeError: slice indices must be integers or None or have an __index__ method解决方法
程序员文章站
2022-07-15 11:08:56
...
在pycharm调试程序时遇到了这样的错误,下面分析一下错误原因以及解决方法:
TypeError: slice indices must be integers or None or have an __index__ method
该错误的意思是 类型错误:切片索引必须是整数或无或有一个_index__方法
1.错误原因:程序在运行过程中,出现浮点数情形,与源码冲突
解决方法:将数据强制转换为int整型类型。即int(数据)
同时将代码中的除法运算(/)改为 //
例如:
2.错误原因:statsmodels的库版本过低,报错
解决方法:
#1 输入 conda list 查看statsmodels的版本。
可以看到版本为 0.6.1,过低
#2 输入**conda update statsmodels
指令,进行更新。
#3 安装完毕后,继续用 conda list 指令查看statsmode**ls的版本,发现已经更新。
#返回源代码进行测试,查看问题是否解决。
上一篇: PHP 7.2 新功能介绍
推荐阅读
-
TypeError: slice indices must be integers or None or have an __index__ method
-
TypeError: slice indices must be integers or None or have an __index__ method解决方法
-
TypeError: slice indices must be integers or None or have an __index__ method原因分析及解决办法
-
TypeError: slice indices must be integers or None or have an __index__ method原因分析及解决办法