“Tekinter Python” 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

Python Tkinter

import tkinter as tk #import the tkinter module as tk

core = tk.Tk() #makes the core (or root)
mylabel = tk.Label(core, text="Hello world!") #makes a label
mylabel.grid(row=0, column=1) #places the object in a virtual grid
                   
tk.Pack() #Pack the object(s)
core.mainloop()#Make the application a loop (needed)
codingiscool

Tekinter Python

from tkinter import *

raiz=Tk()

raiz.mainloop()
RESPAWN 14

Tekinter Python

from tkinder import*

raiz=Tk()

raiz.mainloop()
RESPAWN 14

Respuestas similares a “Tekinter Python”

Preguntas similares a “Tekinter Python”

Más respuestas relacionadas con “Tekinter Python” en Python

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código