Siéntete libre de divulgar nuestros tutoriales y códigos en tus redes sociales, apóyanos para ampliar esta comunidad.
Ejemplo: cómo crear una etiqueta en tkinter
#How to create a label in Tkinterfrom tkinter import*#First create a screen
new_window = Tk()
new_window.title("My Python Project")
new_window.geometry("300x250")
Label(new_window, text ="Hello World").pack()#Label : Tells Python that a label is being created#new_window : whatever screen you want the label to be shown on ; name the screen whatever you like#text : this tells that there is text being typed in the label#.pack() : shows the label on the screen
Te mostramos comentarios y calificaciones
Eres capaz de apoyar nuestra ocupación poniendo un comentario o puntuándolo te lo agradecemos.
¡Haz clic para puntuar esta entrada!
(Votos: 0 Promedio: 0)