python 格式化输出数组
时间: 2023-02-19 13:33:10 浏览: 75
数据的输出-automate the boring stuff with python 原版pdf by sweigart
可以使用 python 中的 numpy 库来格式化输出数组。举个例子:
```python
import numpy as np
a = np.array([1, 2, 3])
np.set_printoptions(precision=3) # 设置精度
print(a)
```
运行上述代码会输出:`[1. 2. 3.]`
使用`np.set_printoptions()`函数来设置输出的精度。
如果需要更多的格式化选项,可以参考numpy官方文档 https://numpy.org/doc/stable/reference/generated/numpy.set_printoptions.html
可以根据需要进行调整。
阅读全文