“GUI BÁSICA TKINTER” Código de respuesta

GUI BÁSICA TKINTER

import tkinter as tk
root = tk.Tk()
root.title("my title")
root.geometry('200x150')
root.configure(background='black')

#	enter widgets here

root.mainloop()
Difficult Dove

Haz una ventana tkinter

#!/usr/bin/python

import Tkinter
top = Tkinter.Tk()
# Code to add widgets will go here...
top.mainloop()
Crowded Cottonmouth

Respuestas similares a “GUI BÁSICA TKINTER”

Preguntas similares a “GUI BÁSICA TKINTER”

Más respuestas relacionadas con “GUI BÁSICA TKINTER” en Python

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código