Tkinter Python GUI Tutorial For Beginners 3 - Creating First GUI Application with Tkinter

preview_player
Показать описание
Welcome to this video on Tkinter Python GUI Tutorial For Beginners. This video shows how to Create your First GUI Application with Tkinter (Window , Button, Label). So we will see How to create our first Hello, World Tkinter GUI app.
Label() defines a label to be displayed. Use the Label widget to show read-only text in a user interface
text= specifies a parameter to be passed in
pack() resizes the window to the proper size
mainloop() enters the event loop, and the program idles until a button is pushed, a menu is pulled, etc. It has to idle until the program is killed, since we didn't define any events.

So What is Tkinter ? Tkinter is the Python interface to the Tk GUI toolkit shipped with Python. In Python you can use the Tkinter module to create simple GUI programs. Tkinter does not always run reliably under IDLE Use IDLE’s editor to write GUI programs, but for best results run the program from the OS command line. Learn Tkinter In easy and simple steps.

#ProgrammingKnowledge #Tkinter #PythonGUITutorial
★★★Top Online Courses From ProgrammingKnowledge ★★★

★★★ Online Courses to learn ★★★

★★★ Follow ★★★

DISCLAIMER: This video and description contains affiliate links, which means that if you click on one of the product links, I’ll receive a small commission. This help support the channel and allows us to continue to make videos like this. Thank you for the support!
Рекомендации по теме
Комментарии
Автор

Whenever next video come out, Soo excited ❣️

Dhananjay_Pandey
Автор

Sir... As I'm Using grid function... Why is it show error message that object has no attribute 'grid'

ravichaudhary
Автор

How to run tkinter program in Google colab, its throwing
error as TclError: no display name and no $DISPLAY environment variable.

from tkinter import Label
wid=Label(None, text='Hello World Tkinter')
wid.pack()
wid.mainloop()

Kindly helpme out to debug this error

shailavijay
Автор

Hello, Mayur RIDGE is incorrect....ridge is correct form but in your pc cannot show error

HimanshuSingh-xgob
Автор

hwo come when ever i make GUi it never pops up

outlawyouiz
Автор

My bg color doesn't show up? How come?

linhp.nguyen
Автор

Looks like a pretty slow way to develop software. Winforms may be dying, but you can build a GUI much faster than this.

danp