我正在尝试使用以下代码制作多个饼图:
n = 0
perc = list()
while n < len(piedata):
perc.append(piedata[n+2])
n += 3
print (perc)
n = 0
fails = list()
while n < len(piedata):
fails.append(piedata[n+1])
n += 3
print(fails)
n = 0
titles = list()
while n < len(piedata):
titles.append(piedata[n])
n += 3
print(titles)
for percent, fail, title in zip(perc, fails, titles):
piedata = [percent, (100-int(percent))]
fig = matplotlib.figure.Figure(figsize=(5, 5))
ax = fig.add_subplot(111)
ax.pie(piedata) # this is the information that the circle diagram will be made out of
ax.legend([('amount of attempts:', NOTT), ('amount of fails', fail)])
circle = matplotlib.patches.Circle((0, 0), 0.7, color='white')
ax.add_artist(circle)
# this is the code for actually putting the circle diagram/pie chart on the screen
canvas = FigureCanvasTkAgg(fig, master=window)
canvas.get_tk_widget().pack()
canvas.draw()
Label(window, text=(title, title), bg='light blue').pack()
window.mainloop()
print(percent)
print(fail)
据我所知,我的问题是最后window.mainloop()
只能使用一次,然后不能再次使用。
我正在尝试从中取出2个循环。
答案 0 :(得分:0)
对于任何发现此问题的人: tk.mainloop()(在我的情况下是window.mainloop())在许多情况下会停止程序形式的运行。这是一个非常简化的版本,但是如果您遇到过这种情况,答案可能是将其替换为:
window.update_idletasks()
window.update()
但是,如果像我以前那样在循环中使用它,则需要添加一个break子句或使用for循环,否则它将继续循环。