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()
On this page of the site you can watch the video online Learn Python tkinter labels easy 🏷️ with a duration of hours minute second in good quality, which was uploaded by the user Bro Code 22 September 2020, share the link with friends and acquaintances, this video has already been watched 39,617 times on youtube and it was liked by 1.3 thousand viewers. Enjoy your viewing!