“Tekinter Python” Ответ

Основной графический интерфейс

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

Ответы похожие на “Tekinter Python”

Вопросы похожие на “Tekinter Python”

Больше похожих ответов на “Tekinter Python” по Python

Смотреть популярные ответы по языку

Смотреть другие языки программирования