您可以分别在新行中编写,也可以在单个字符串中编写,这更容易。例子1输入项line1 = "hello how are you"line2 = "I am testing the new line escape sequence"line3 = "this seems to work"您可以单独编写“ \ n”:file.write(line1)file.write("\n")file.write(line2)file.write("\n")file.write(line3)file.write("\n")输出量hello how are youI am testing the new line escape sequencethis seems to work例子2输入项正如其他人在前面的答案中指出的那样,将\ n放在字符串中的相关点上:line = "hello how are you\nI am testing the new line escape sequence\nthis seems to work"file.write(line)输出量hello how are youI am testing the new line escape sequencethis seems to work