我想知道让我的脚本在文件中写入内容(比如text.txt)的最佳方法,这种方式总是会在最后添加换行符.当我使用附加文本时 file = io.open(test.txt, "a")file:write("hello") 两次,文件看起来像: hello
file = io.open(test.txt, "a") file:write("hello")
两次,文件看起来像:
hellohello
但我希望它看起来像:
hello hello与print不同,调用io.write时不会自动添加新行字符,您可以自己添加:
file:write("hello", "\n")