Pythonic 文件写入
在现代 Python 中,不推荐使用 print 写入文件的做法已被更优雅、更高效的方式所取代方法。
带上下文的文件 I/O管理器
要将一行写入文件,请使用 with 语句和 open() 函数,如下所示:
with open('somefile.txt', 'a') as the_file: the_file.write('Hello\n')
with 语句确保文件正确打开,并且关闭,优雅地处理潜在的异常。模式 'a' 表示应打开文件进行追加,而 'w' 可用于截断写入。
行终止符注意事项
避免使用os.linesep 作为以文本模式写入文件时的行终止符。相反,请在所有平台上使用单个“n”。
Do not use os.linesep as a line terminator when writing files opened in text mode (the default); use a single '\n' instead, on all platforms.
其他资源
有关更多见解,请浏览以下文档:
以上是如何在Python中高效地写入文件?的详细内容。更多信息请关注PHP中文网其他相关文章!