python 格式化输出数组
时间: 2023-02-11 14:14:23 浏览: 43
python format 格式化输出方法
5星 · 资源好评率100%
可以使用 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
可以根据需要进行调整。
阅读全文