Tkinter Tutorial - Ciao Mondo
Inizieremo il nostro viaggio su Tkinter con il popolare programma 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()
La finestra sarà come questa:
Tkinter
in Python 2 a tkinter
in Python 3. Pertanto, se si desidera scrivere codici Tkinter compatibili con Python 2 e 3, è necessario controllare il numero di versione maggiore di Python prima di importare Tkinter.Per Python 2
import Tkinter as tk
Per Python 3
import tkinter as tk
Nella riga successiva
app = tk.Tk()
La finestra dell’applicazione che è una finestra principale potrebbe avere altri widget come etichette, pulsanti e canvas in sé. È la finestra madre di tutti i suoi widget.
app.title("Hello World")
Denomina la finestra principale come Hello World
.
app.mainloop()
Dopo che l’istanza della finestra è stata creata, mainloop()
dovrebbe essere chiamata per far entrare la finestra nel ciclo infinito, altrimenti non apparirà nulla.
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