每次调用时,我都想在字符串中添加一个换行符file.write()。在 Python 中最简单的方法是什么?
file.write()
使用“\n”:
file.write("My String\n")
请参阅Python 手册以供参考。