阅读量:0
要取消Python写入文件时的自动换行,可以通过在写入操作时指定end=""
来实现。下面是一个示例:
# 打开文件,以写入模式打开,如果文件不存在则创建新文件 file = open("example.txt", "w") # 写入内容到文件中 file.write("Hello") file.write("World") # 关闭文件 file.close()
运行以上代码后,example.txt
文件中的内容将会是HelloWorld
,而不是Hello\nWorld
。