“Feche a janela tkiinter” Respostas de código

Feche a janela tkiinter

from tkinter import *

# creates the window
root = Tk()
root.mainloop()
# Puts root running in background
root.quit()
Lucas Vinícius Guedes da Silva

Feche a janela tkiinter

from tkinter import *

# creates the window
root = Tk()
root.mainloop()
# vanish out the root window (don't go background)
root.destroy()
Lucas Vinícius Guedes da Silva

Respostas semelhantes a “Feche a janela tkiinter”

Perguntas semelhantes a “Feche a janela tkiinter”

Mais respostas relacionadas para “Feche a janela tkiinter” em Python

Procure respostas de código populares por idioma

Procurar outros idiomas de código