python:创建一个字典,在文件中显示为“None”

时间:2016-05-14 23:14:11

标签: python dictionary

当读取文件时它将显示为“无”,我如何解决这个问题,以便它是一个文件中的字典(由两个变量组成)。

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()

1 个答案:

答案 0 :(得分:3)

highscores = highscores.append(high)

此设置高分为无。 append返回None,不要将其设置为变量。