Recherche…


Introduction

Les tableaux Numpy peuvent être enregistrés et chargés de différentes manières.

Utiliser numpy.save et numpy.load

np.save et np.load fournissent un cadre facile à utiliser pour enregistrer et charger des tableaux numpy de taille arbitraire:

import numpy as np

a = np.random.randint(10,size=(3,3))
np.save('arr', a)

a2 = np.load('arr.npy')
print a2


Modified text is an extract of the original Stack Overflow Documentation
Sous licence CC BY-SA 3.0
Non affilié à Stack Overflow