在可變高分中有幾個字典。我需要按鍵值排序,而sorted()不起作用。我怎樣才能在一個變量中排序多個字典?
global highscores
f = open('RPS.txt', 'r')
highscores = [line.strip() for line in f]
sorted(highscores)
highscores = reverse=True[:5]
for line in f:
x = line.strip()
print(x)
f.close()
這是錯誤: 類型錯誤:「布爾」對象未標化的
你想從這條線上得到什麼'highscores = reverse = True [:5]' – gdlmx
這條線會把詞典翻轉過來,只顯示前5個 –
似乎這是一個家庭作業問題,因爲我剛剛看到一個類似題。 – gdlmx