Course Hive
Search

Welcome

Sign in or create your account

Continue with Google
or
Python tkinter setup a basic GUI 🐍
Play lesson

Python tkinter tutorial for beginners 🐍 - Python tkinter setup a basic GUI 🐍

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 tkinter GUI tutorial for beginners #Python #tkinter #GUI #tutorial #beginners from tkinter import * window = Tk() #instantiate an instance of a window window.geometry("420x420") window.title("Bro Code first GUI program") icon = PhotoImage(file='logo.png') window.iconphoto(True,icon) window.config(background="#5cfcff") window.mainloop() #place window on computer screen, listen for events

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