#文件写模式f=open('a.txt','w',encoding='utf-8')#文件写f.write('11111 ')f.write('2222 ')f.write('3333 4444 ')#文件写多行f.writelines(['a ','b ','c '])#关闭f.close()