“Tekinter Python” Kod odpowiedzi

Podstawowy GUI 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

Odpowiedzi podobne do “Tekinter Python”

Pytania podobne do “Tekinter Python”

Więcej pokrewnych odpowiedzi na “Tekinter Python” w Python

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu