“Python menulis array untuk mengajukan” Kode Jawaban

Konversi daftar python ke file teks

# 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

cara menyimpan daftar python untuk mengajukan

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 menulis array untuk mengajukan

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

Daftar ke file teks Python

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

cara menulis array numpy ke file di 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

Jawaban yang mirip dengan “Python menulis array untuk mengajukan”

Pertanyaan yang mirip dengan “Python menulis array untuk mengajukan”

Lebih banyak jawaban terkait untuk “Python menulis array untuk mengajukan” di Python

Jelajahi jawaban kode populer menurut bahasa

Jelajahi bahasa kode lainnya