Ya no necesitas buscar más por todo internet ya que llegaste al lugar justo, poseemos la respuesta que necesitas encontrar pero sin complicarte.
Ejemplo 1: crear ventana con python
# basic setup
from tkinter import *
app = Tk() # the application itself
app.title("Test") # title of window
label = Label(app, text="Testing testing one, two, three") # creates label
label.pack() # adds the label to the window
app.mainloop() # this must go at the end of your window code
Ejemplo 2: tutorial de tkinter
# check this code first.
from tkinter import *
app = Tk()
# The title of the project
app.title("The title of the project")
# The size of the window
app.geometry("400x400")
# Defining a funtion
def c():
# Label
m = Label(app, text="Text")
m.pack()
# Button
l = Button(app, text="The text of the Butoon", command=c)
# Packing the Button
l.pack()
app.mainloop()
# Quick Note :
# When you put a command you should not use parentheses
# l = Button(app, text="The text of the Butoon", command=c)
# l = Button(app, text="The text of the Butoon", command=c())
Ejemplo 3: interfaz gráfica de usuario de Python
import tkinter as tk
#Importing the main module
window = tk.Tk()
window.mainloop()
Recuerda difundir este post si te valió la pena.
¡Haz clic para puntuar esta entrada!
(Votos: 0 Promedio: 0)