TypeError: sequence item 0: expected str instance, numpy.int64 found
时间: 2024-05-01 18:20:39 浏览: 152
解决Python中报错TypeError: must be str, not bytes问题
3星 · 编辑精心推荐
这个错误通常是因为你在处理字符串时,使用了一个numpy.int64类型的变量。你需要将其转换为字符串类型。你可以使用str()函数将其转换为字符串类型,例如:
```
num = np.int64(10)
str_num = str(num)
```
这样就将变量num从numpy.int64类型转换为了字符串类型str。
阅读全文