“Konversi daftar python ke file teks” 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

cara menulis daftar ke file teks python

# 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)
Annoying Albatross

Jawaban yang mirip dengan “Konversi daftar python ke file teks”

Pertanyaan yang mirip dengan “Konversi daftar python ke file teks”

Lebih banyak jawaban terkait untuk “Konversi daftar python ke file teks” di Python

Jelajahi jawaban kode populer menurut bahasa

Jelajahi bahasa kode lainnya