2016-03-11 20 views

回答

1
f = open('workfile', 'w') 
for l in list: 
     f.write(l) 
     f.write("\n") 
f.close()