Thanks
my terminal say invalisd syntax
import tkinter as tk root = tk.Tk() root.title("Ventana azul") root.configure(bg='blue') # Configurar el color de fondo root.geometry("400x300") # Ajustar el tamaño de la ventana # Botón para cerrar la ventana def cerrar_ventana(): root.destroy() boton_cerrar = tk.Button(root, text="Cerrar", command=cerrar_ventana) boton_cerrar.pack(pady=10) root.mainloop() no matter what the window is black.. and if I add labels and entry boxes they don't show
bro just type : from tkinter import *
how to open the app?
Why cant you just go import tkinter... whats the point of loadint every single library...
"No module found"😭😭😭
Thanks
@lordbeerus3310