📜  numpy.save()

📅  最后修改于: 2022-05-13 01:55:44.936000             🧑  作者: Mango

numpy.save()

numpy.save()函数用于将输入数组存储在具有 npy 扩展名 (.npy) 的磁盘文件中。

代码 #1:工作

# Python program explaining 
# save() function 
  
import numpy as geek
  
a = geek.arange(5)
  
# a is printed.
print("a is:")
print(a)
  
# the array is saved in the file geekfile.npy 
geek.save('geekfile', a)
  
print("the array is saved in the file geekfile.npy")
  

输出 :

a is:
[0 1 2 3 4]
the array is saved in the file geekfile.npy


代码 #2

# Python program explaining 
# save() function 
  
import numpy as geek
  
# the array is loaded into b
b = geek.load('geekfile.npy')
  
print("b is:")
print(b)
  
# b is printed from geekfile.npy
print("b is printed from geekfile.npy")

输出 :

b is:
[0 1 2 3 4]
b is printed from geekfile.npy