@lordbeerus3310

Bro what if I'm executing a python function and popup appear and got stuck what should I do

@boruto-f8q

my terminal say invalisd syntax

@pauldc83

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

@Gigacoderletuscode

bro just type : from tkinter import *

@quantixfn

how to open the app?

@Lolmando

Why cant you just go import tkinter... whats the point of loadint every single library...

@DanielMendanha-v8g

"No module found"😭😭😭

@facefamousee

Thanks