📜  将列表保存到文件 python 代码示例

📅  最后修改于: 2022-03-11 14:45:15.163000             🧑  作者: Mango

代码示例5
# 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)