Learn Python tkinter GUI keyboard events ⌨️

preview_player
Показать описание
Python key bind events keyboard tkinter GUI tutorial for beginners

#Python #key #bind #events #keyboard #tkinter #GUI #tutorial #beginners
Рекомендации по теме
Комментарии
Автор

from tkinter import *

def doSomething(event):
#print("You pressed: " + event.keysym)


window = Tk()

window.bind("<Key>", doSomething)

label = Label(window, font=("Helvetica", 100))
label.pack()

window.mainloop()

BroCodez
Автор

For many years, your tutorial is the best. Straight to the point and detailed, to the point whenever I forgot something, your tutorial is my first choice.

nointro
Автор

What's special in your learning is you give us all the basics to use python not only its syntax. Can't wait to see your other language tutorials.😁😁

Amir_Plays_non_stop
Автор

How to do this with double keys for example 'control+f'

gauthamdga
Автор

Very very informative and interesting useful tutorial. 👌👌🎉

anokhautomation
Автор

Thanks For The Video. I Dident Know The bind thing in tk Nice Video!

arodandtamarazalioukamir
Автор

step 3 = done
step 1 = done 👍
step 2 = done 🗯
best teaching style ever, keep on your great work Bro!

derpfisti
Автор

How to move a cusor from one entry to another ofter pressing enter

ravitejats
Автор

really helpful video! Question though, what if I wanted to continue to add the keysym everytime to the label? so if i press w a s d, it shows on the screen as wasd, etc. I'm fairly new to python so sorry if this question can be easily answered elsewhere, thanks!

austinnunez
Автор

We meet again Mr Bro, F for respect for You !!

piotrkopcewicz
Автор

Can u do a tutorial on how to make animations from html

noisyguest
Автор

Im going to press A instead of F. A is more reflective of your content. 😅

KJJHN
Автор

*Comments*, *Likes*, *Subscribes*

i did all the steps :D


great tutorial btw!

bluenone
Автор

Hey Bro!
QQ.
Why do we define function outside the window here but in some cases we have defined inside the window. I mean how could we decide which one goes where?? 🤣🤣🤣

sumanlamichhane