基本です。.bindでkeyが打たれたときの状態を感知することができます。 import tkinter as tk root = tk.Tk() def key_event(e): print(e.keysym) root.bind("<KeyPress>", key_event) root.mainloop() このコードを実行してキーボードを叩けばprint関数で打ったkeyが出力されます。
ラズパイはミニPCの一つですが、WindowsなどのOSと趣旨が違いより外部機器とやり取りしやすい構造になっています。例えばカメラモジュールは取り付けてちょっと初期設定をすれば、Python等から比較的簡単に操作できます。 ところで、外部機器とやり取り ...
「Tkinter」というGUIライブラリを利用することで、PythonでもデスクトップのGUIアプリを作成できる。その方法を解説しよう。 最初に、すべての基本となる「1枚のウインドウを表示するだけのアプリ」をPython+Tkinterで作りましょう。プログラム(ソースコード ...
This is a simple GUI-based calculator built using Python and the Tkinter library. It performs basic arithmetic operations such as addition, subtraction, multiplication, division and a combination of ...
This repository contains Python files with examples using the Tkinter library. The project is still a work in progress and not yet fully complete. This is a test project as you understand from the ...
ところで、『デスクトップアプリ』とは何だろうか。WindowsやmacOSなどパソコン上で動作するアプリのことだ。昨今、アプリと言えば、スマートフォンを対象にしたアプリを指すことが増えた。そこで、スマホアプリに対して、パソコンで動作するアプリを ...