# define list of places
places = ['Berlin', 'Cape Town', 'Sydney', 'Moscow']
with open('listfile.txt', 'w') as filehandle:
for listitem in places:
filehandle.write('%s
' % listitem)
#Salvar lista em .txt
with open('your_file.txt', 'w') as f:
for item in my_list:
f.write("%s
" % item)