我正在使用:
text_file = open('files/highscoresnake.txt', 'w')
word = str(score)
text_file.write(word)
在游戏中保存高分。 但这对文本文件没有任何作用
答案 0 :(得分:1)
完成后,您需要关闭文件。之后尝试text_file.close()
。
最好使用with
:
with open('files/highscoresnake.txt', 'w') as file:
file.write(word)
with
将在您退出该代码块后关闭文件。