gpt4 book ai didi

python - 将行写入文件的正确方法?

转载 作者:IT老高 更新时间:2023-10-28 11:58:27 25 4
gpt4 key购买 nike

如何在现代 Python 中将一行写入文件?我听说这已被弃用:

print >>f, "hi there"

另外,"\n" 是否适用于所有平台,或者我应该在 Windows 上使用 "\r\n" 吗?

最佳答案

这应该很简单:

with open('somefile.txt', 'a') as the_file:
the_file.write('Hello\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 - 将行写入文件的正确方法?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6159900/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com