当读取文件时它将显示为“无”,我如何解决这个问题,以便它是一个文件中的字典(由两个变量组成)。
with open('RPS.txt','r') as f:
highscores = [line.strip() for line in f]
f = open('RPS.txt','a')
high = {player_score: name}
highscores = highscores.append(high)
print(highscores, file=f)
f.close()
答案 0 :(得分:3)
highscores = highscores.append(high)
此设置高分为无。 append返回None,不要将其设置为变量。