首先,可以使用open函数打开一个txt文件并指定写入模式(‘w’)。如果该文件不存在,open函数会自动创建一个新文件。 withopen('data.txt','w')asfile:file.write('第一行数据\n')file.write('第二行数据\n')file.write('第三行数据\n') 1. 2. 3. 4. 以上代码使用了with语句来打开文件,并将文件对象...