how to resolve the problem of saving the file ,
it is showing the file is not in utf format
and saving disabled
While saving .nyp file jupyter notebook showing saving disables
Hey @ysh, you are getting some error on the terminal or while opening the file you are getting an error.
It is to be noted that you can’t load ans see .npy files like .csv files. To check if it is saved properly you have to check it through x = np.load(file_name)
and than print(x)
Hope this resolved your doubt. 
while opening the file its showing saving disabled
Hey @ysh, as I said there is no use in opening the file directly, to check if it is saved properly you have to check it through x = np.load(file_name)
and than print(x)
Happy learning 