gpt4 book ai didi

python - 如何在 Python 中向字符串添加换行符?

转载 作者:太空宇宙 更新时间:2023-11-03 16:42:13 26 4
gpt4 key购买 nike

我正在将名称和分数添加到文件中,并试图弄清楚如何在将数据写入文件后开始换行。到目前为止,这是我的代码,但是当我在文件中继续时,所有变量都在同一行上:

print "That's the game folks! You finished with a final score of...", points, 'points! Good game, you made the high score list! What is your name?'
name = raw_input()
w = open('Highscores', 'a')
w.write(name)
w.write(str(points))
w.close()

最佳答案

在 unix 上使用 \n 换行,在 Windows 上使用 \r\n 。只需添加到字符串的末尾即可。

w.write(str(points) + '\n')

print "That's the game folks! You finished with a final score of...", points, 'points! Good game, you made the high score list! What is your name?\n'

关于python - 如何在 Python 中向字符串添加换行符?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36698771/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com