在Python中,可以使用 write()
函數來添加換行, 例如:
file = open("example.txt", "w")
file.write("hello\n")
file.write("world\n")
file.close()
另外,也可以在 writelines()
函數中傳入包含換行符的字符串列表,例如:
file = open("example.txt", "w")
lines = ["hello\n", "world\n"]
file.writelines(lines)
file.close()
無論是使用 write()
還是 writelines()
,都可以在字符串中加入 \n
來添加換行。