Skip to content

PRO TIP Block youtube.com at the DNS level — Pi-hole, NextDNS or your hosts file — but allow youtube-nocookie.com and i.ytimg.com. These tutorials keep playing; the rabbit hole does not.

Learning without distractions

Learn Python tkinter labels easy 🏷️

105.6K views on YouTube

Python label labels tkinter GUI code example tutorial for beginners

#Python #label #labels #tkinter #GUI #code #example #tutorial for #beginners

from tkinter import *

# label = an area widget that holds text and/or an image within a window

window = Tk()

photo = PhotoImage(file=’person.png’)

label = Label(window,
text=”bro, do you even code?”,
font=(‘Arial’,40,’bold’),
fg=’#00FF00′,
bg=’black’,
relief=RAISED,
bd=10,
padx=20,
pady=20,
image=photo,
compound=’bottom’)
label.pack()
#label.place(x=0,y=0)

window.mainloop()