Course Hive
Search

Welcome

Sign in or create your account

Continue with Google
or
Learn Python tkinter labels easy 🏷️
Play lesson

Python tkinter tutorial for beginners 🐍 - Learn Python tkinter labels easy 🏷️

5.0 (2)
22 learners

What you'll learn

This course includes

  • 5.5 hours of video
  • Certificate of completion
  • Access on mobile and TV

Summary

Keywords

Full Transcript

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()

Course Hive

Continue this lesson in the app

Install CourseHive on Android or iOS to keep learning while you move.

Related Courses

FAQs

Course Hive
Download CourseHive
Keep learning anywhere