AttributeError: 'int' object has no attribute 'index'
时间: 2023-12-14 13:34:46 浏览: 178
对象不支持indexOf属性或方法的解决方法(必看)
这个错误提示是因为整数类型没有index()方法,只有列表、元组和字符串等类型才有。如果你想在整数中查找某个值的索引,可以将整数放入列表或元组中,然后再使用index()方法。例如:
```python
num_list = [1, 2, 3, 4, 5]
num = 3
if num in num_list:
index = num_list.index(num)
print("The index of {} is {}".format(num, index))
else:
print("{} is not in the list".format(num))
```
阅读全文