array.array' object has no attribute 'tostring'
时间: 2023-07-16 13:10:59 浏览: 492
AttributeError: module 'tensorflow.compat.v1' has no attribute '
这个错误是因为 `array.array` 对象没有 `tostring` 属性。你可能想要使用 `tobytes` 属性来获取数组的字节表示。你可以尝试使用 `tostring` 的替代方法,如下所示:
```python
import array
my_array = array.array('i', [1, 2, 3, 4, 5])
byte_representation = my_array.tobytes()
```
这样就可以将 `array.array` 对象转换为字节表示。
阅读全文