lista to txt python

Solutions on MaxInterview for lista to txt python by the best coders in the world

we are a community of more than 2 million smartest coders
registration for
employee referral programs
are now open
get referred to google, amazon, flipkart and more
register now
  
pinned-register now
showing results for - "lista to txt python"
Giulio
10 Sep 2017
1#Salvar lista em .txt
2with open('your_file.txt', 'w') as f:
3    for item in my_list:
4        f.write("%s\n" % item)
5