Tkinter Tutorial - Hello World
Vamos começar a nossa jornada Tkinter com o popular programa Hello World
.
from sys import version_info
if version_info.major == 2:
import Tkinter as tk
else:
import tkinter as tk
app = tk.Tk()
app.title("Hello World")
app.mainloop()
A janela será como esta:
Tkinter
em Python 2 para tkinter
em Python 3. Portanto, se você quiser escrever códigos Tkinter compatíveis em Python 2 e 3, você precisa verificar o número da versão principal do Python antes de importar o Tkinter.Para Python 2
import Tkinter as tk
Para Python 3
import tkinter as tk
Na linha seguinte
app = tk.Tk()
A janela do aplicativo que é uma janela principal poderia ter outros widgets como etiquetas, botões e lona em si mesma. Ela é a janela principal de todos os seus widgets.
app.title("Hello World")
Ela nomeia a janela principal como Hello World
.
app.mainloop()
Após a instância da janela ser criada, mainloop()
deve ser chamada para deixar a janela entrar no loop infinito, caso contrário nada aparecerá.
Founder of DelftStack.com. Jinku has worked in the robotics and automotive industries for over 8 years. He sharpened his coding skills when he needed to do the automatic testing, data collection from remote servers and report creation from the endurance test. He is from an electrical/electronics engineering background but has expanded his interest to embedded electronics, embedded programming and front-/back-end programming.
LinkedIn Facebook