Python文本文件的创建与读写操作
#创建文本文件
txt_file = open('test.txt','w',encoding = 'utf-8')
#或者使用绝对路径
#txt_file = open('E:\py-practice\test.txt','w',encoding = 'utf-8')
#文本读写操作
#(1) write()方法
txt_file.write('测试\n文本')
#(2) writelines()方法
txt_file.writelines(['新写入的话