tkinter
from tkinter import * # import tkinter
window = Tk() #create a window
window.mainloop() #update window
tkinter
from tkinter import * # import tkinter
window = Tk() #create a window
window.mainloop() #update window
tkinter
Tkinter is the biuld-in GUI toolkit of python. You can
easily make a graffical software using tkinter.
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)
Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us