print_to_txt('Hello, World!','output.txt') 1. 运行以上代码后,将会在同级目录下生成一个名为output.txt的文件,并将Hello, World!保存到该文件中。 示例应用 下面是一个更具体的示例,展示了如何使用Python将打印结果输出到txt文件。 importsysdefprint_to_txt(content,filename):withopen(filename,'a')as...
下面是一个将打印结果存到txt文件的示例代码: # 打开文件,准备写入withopen('output.txt','w')asfile:# 写入一些内容file.write('Hello, world!\n')file.write('This is a test.\n')file.write('Python is great!\n')# 打印结果print('The content has been written to output.txt') 1. 2. 3. ...