Installation: Tkinter module already comes with Python.(Batteries included)
import tkinter
#Basic example - a program, that's creates and displays a window to the user.
#Window gets created
root = tkinter.Tk()
#Needed for the window to run as long as we don't close it.
root.mainloop()
root = tkinter.Tk()
def hello():
print("Hello, World!")
B = tkinter.Button(root, text ="Hello", command = hello)
B.pack()
root.mainloop()
Hello, World!
root = tkinter.Tk()
C = tkinter.Canvas(root, bg="blue", height=250, width=300)
coord = 10, 50, 240, 210
arc = C.create_arc(coord, start=0, extent=150, fill="red")
C.pack()
root.mainloop()
from tkinter import *
root = Tk()
var = StringVar()
label = Label( root, textvariable=var)
var.set("Hey!? How are you doing?")
label.pack()
root.mainloop()
from tkinter import *
top = Tk()
L1 = Label(top, text="User Name")
L1.pack( side = LEFT)
E1 = Entry(top, bd =5)
E1.pack(side = RIGHT)
top.mainloop()
import tkinter
from tkinter import messagebox
top = tkinter.Tk()
def helloCallBack():
messagebox.showinfo( "Hello Python", "Hello World")
B = tkinter.Button(top, text ="Hello", command = helloCallBack)
B.pack()
top.mainloop()
#DIMENSIONS
root = tkinter.Tk()
root.geometry("500x500")
root.resizable(0, 0)
root.mainloop()
#COLORS
#FONT
root = tkinter.Tk()
def hello():
print("Hello, World!")
B = tkinter.Button(root, text ="Hello", bg = "#000000", fg = "blue", font = "none 16 italic underline", command = hello)
B.pack()
root.mainloop()
Hello, World!