以下是我的代码的相关内容。
while True:
p = int(psutil.cpu_percent(interval=0.1))
progressbar = ttk.Progressbar(orient=HORIZONTAL, length=screen_width, mode='determinate')
progressbar['value'] = p
progressbar.update_idletasks()
因此,当我运行时,只是吐出冻结它从p变量得到的第一个值。我试过设置VARIABLE而不是像这样设置值。请帮忙。