“Python Écrivez le tableau dans le fichier” Réponses codées

Convertir la liste Python en fichier texte

# define list of places
places = ['Berlin', 'Cape Town', 'Sydney', 'Moscow']

with open('listfile.txt', 'w') as filehandle:
    for listitem in places:
        filehandle.write('%s\n' % listitem)
Determined Dunlin

Comment enregistrer la liste Python dans le fichier

import json
a = [1,2,3]
with open('test.txt', 'w') as f:
    f.write(json.dumps(a))

#Now read the file back into a Python list object
with open('test.txt', 'r') as f:
    a = json.loads(f.read())
Weary Wombat

Python Écrivez le tableau dans le fichier

with open("outfile", "w") as outfile:
    outfile.write("\n".join(itemlist))
Damjan D

Liste du fichier texte Python

with open('your_file.txt', 'w') as f:
    for item in my_list:
        f.write("%s\n" % item)
Expensive Eel

Comment écrire un tableau Numpy dans un fichier dans Python

numpy.savetxt(fname, X, fmt='%.18e', delimiter=' ', newline='\n', 
              header='', footer='', comments='# ', encoding=None)


x = y = z = np.arange(0.0,5.0,1.0)
np.savetxt('test.out', x, delimiter=',')   # X is an array
np.savetxt('test.out', (x,y,z))   # x,y,z equal sized 1D arrays
np.savetxt('test.out', x, fmt='%1.4e')   # use exponential notation
Open Ostrich

Réponses similaires à “Python Écrivez le tableau dans le fichier”

Questions similaires à “Python Écrivez le tableau dans le fichier”

Plus de réponses similaires à “Python Écrivez le tableau dans le fichier” dans Python

Parcourir les réponses de code populaires par langue

Parcourir d'autres langages de code