numpy.save()
numpy.save()
function is used to store the input array in a disk file with npy extension(.npy).
Syntax : numpy.save(file, arr, allow_pickle=True, fix_imports=True)
Parameters:
file : : File or filename to which the data is saved. If file is a string or Path, a .npy extension will be appended to the file name if it does not already have one.If file is a file-object, then the filename is unchanged.
allow_pickle : : Allow saving object arrays using Python pickles. Reasons for disallowing pickles include security (loading pickled data can execute arbitrary code) and portability (pickled objects may not be loadable on different Python installations). Default: True
fix_imports : Only useful in forcing objects in object arrays on Python 3 to be pickled in a Python 2 compatible way.
arr : Array data to be saved.Return : Stores the input array in a disk file with npy extension(.npy).
Code #1: Working
# 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" ) |
Output :
a is: [0 1 2 3 4] the array is saved in the file geekfile.npy
Code #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" ) |
Output :
b is: [0 1 2 3 4] b is printed from geekfile.npy
Recommended Posts:
- Python | Ways to invert mapping of dictionary
- Python | Using variable outside and inside the class and method
- Python | Matplotlib Sub plotting using object oriented API
- Python | OpenCV program to read and save an Image
- Python | Remove all sublists outside the given range
- How to draw Japan flag using MATLAB
- Python | Pandas Series.bfill()
- Python | Pandas Series.between_time()
- Python | Pandas Series.autocorr()
- Python | Pandas Series.at_time()
- Python | Pandas Series.combine()
- Python | Pandas Series.corr()
- numpy.frompyfunc() in Python
- Python | Filter even values from a list
- Python | Find the tuples containing the given element from a list of tuples
If you like GeeksforGeeks and would like to contribute, you can also write an article using contribute.geeksforgeeks.org or mail your article to contribute@geeksforgeeks.org. See your article appearing on the GeeksforGeeks main page and help other Geeks.
Please Improve this article if you find anything incorrect by clicking on the "Improve Article" button below.