📅  最后修改于: 2023-12-03 15:38:36.236000             🧑  作者: Mango
在Python中,我们可以使用内置的open()
函数来打开一个文件并进行读写操作。将字符串导出为txt文件的一种简单方法是将其写入一个新的txt文件中。下面是具体步骤:
open()
函数以写入模式打开一个新的txt文件with open('new_file.txt', 'w') as file:
在这个例子中,我们使用with
语句打开一个名为new_file.txt
的文件,并将文件句柄赋值给变量file
。此时文件写入模式为'w'
,表示写入模式。如果文件不存在,则会自动创建一个新的文件。
string = 'Hello, world!'
with open('new_file.txt', 'w') as file:
file.write(string)
在这个例子中,我们定义了一个字符串'Hello, world!'
,并使用write()
方法将其写入到文件中。
string = 'Hello, world!'
with open('new_file.txt', 'w') as file:
file.write(string)
file.close()
在写入操作结束后,需要使用close()
方法关闭文件以释放资源。
完整的代码:
string = 'Hello, world!'
with open('new_file.txt', 'w') as file:
file.write(string)
file.close()
以上就是如何在Python中将字符串导出为txt文件的方法,使用with
语句可以更方便地打开和关闭文件,避免了手动调用close()
方法可能忘记关闭文件的问题。