.NPY 文件扩展名
Python NumPy Array File
| 开发者 | Python |
| 受欢迎程度 |
3.5 | 27 票 |
什么是 NPY 文件?
An NPY file is a NumPy array file created by the Python software package with the NumPy library installed. It contains an array saved in the NumPy (NPY) file format. NPY files store all the information required to reconstruct an array on any computer, which includes dtype and shape information.
更多信息
NumPy is a Python programming language library that provides support for large arrays and matrices.
You can export an array to an NPY file by using np.save('filename.npy', array).
You can load an array in an NPY file by using np.load('filename.npy').
可打开 NPY 文件的程序
Windows