2016-03-11 50 views

回答

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