我有两个列表,一个包含在每个主题上得分的标记,第二个包含与每个主题相对应的总标记。现在我想根据每个主题的得分百分比按降序对两个列表进行排序。
答案 0 :(得分:0)
从字面上理解你的帖子,如果你有一个具有属性分数的成绩等级,并且成绩在列表中:
forecast_update
如果文件已经不存在,您需要在文件顶部加import tkinter as tk
#these two needed only for API update simulation
import random
import string
root = tk.Tk()
forecast = tk.Label(text="Forecast will be updated in 60 seconds...")
forecast.pack()
# returns a string with 7 random characters, each time it is called, in order to simulate API
def update_request_from_api():
return ''.join(random.choice(string.ascii_lowercase) for x in range(7))
# Your function to update the label
def forecast_update():
forecast.configure(text=update_request_from_api())
forecast.after(60000, forecast_update) # 60000 ms = 1 minute
# calling the update function once
forecast_update()
root.mainloop()