如何将多行文本文件在Lua中改写成长尾词?
- 内容介绍
- 文章标签
- 相关推荐
本文共计195个文字,预计阅读时间需要1分钟。
要将内容写入文件并在每次写入后添加换行符,可以使用以下方法:
pythonfile=open('test.txt', 'a')file.write('hello\n')file.close()
这样,每次写入的hello后面都会有一个换行符,文件内容将看起来像这样:
hellohello
我想知道让我的脚本在文件中写入内容(比如text.txt)的最佳方法,这种方式总是会在最后添加换行符.当我使用附加文本时file = io.open(test.txt, "a") file:write("hello")
两次,文件看起来像:
hellohello
但我希望它看起来像:
hello hello 与print不同,调用io.write时不会自动添加新行字符,您可以自己添加:
file:write("hello", "\n")
本文共计195个文字,预计阅读时间需要1分钟。
要将内容写入文件并在每次写入后添加换行符,可以使用以下方法:
pythonfile=open('test.txt', 'a')file.write('hello\n')file.close()
这样,每次写入的hello后面都会有一个换行符,文件内容将看起来像这样:
hellohello
我想知道让我的脚本在文件中写入内容(比如text.txt)的最佳方法,这种方式总是会在最后添加换行符.当我使用附加文本时file = io.open(test.txt, "a") file:write("hello")
两次,文件看起来像:
hellohello
但我希望它看起来像:
hello hello 与print不同,调用io.write时不会自动添加新行字符,您可以自己添加:
file:write("hello", "\n")

