Answer the question
In order to leave comments, you need to log in
Answer the question
In order to leave comments, you need to log in
You can use tkinter:
import tkinter as tki # можно и from tkinter import *
root = tki.Tk() # создаём окно, при нажатии на которое будут выводиться данные о событии
def printPressedButton(event):
print(event) # выводим в консоль событие (что и где нажато), здесь должна быть табуляция
root.bind('<ButtonPress>', printPressedButton) # ButtonPress - реакция на нажатие
# можно , конечно, и Button, и ButtonRelease и др.
root.mainloop() # Запускаем главный цикл...
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question