成功解决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

解决思路

类型错误:切片索引必须是整数或无,或者有一个__index__ 的方法

解决方法

对要切分的数值,进行整数转换
比如,
num
改为
int(num)

哈哈,大功告成!

(0)

相关推荐