我正在创建一个棋盘游戏,并且我将Tkinter用于GUI界面。我创建了这样的主循环:
while gameOn == True: #The loop
main_game_AI() #This is the actual game
root.mainloop() #This puts together the window.
root.destroy() #This closes the mainloop so the loop can continue.
但是当我运行它时,循环只重复了一次。函数的顺序有问题吗?
答案 0 :(得分:0)
database.yml
直到根窗口被销毁或您调用root.mainloop()
之前都不会返回。因此,只有在用户退出您的程序后,您才能调用对root.quit()
的调用。