ニュース

プログラミングの腕を磨くために、ゲーム制作に挑戦するのは、とても良い方法だ。なぜなら、ゲームは遊ぶだけではなく、作るのも楽しいので、楽しみながら、プログラミングを覚えることができるからだ。 そのため、Pythonを身につけようと思って ...
Pythonは、シンプルで強力なプログラミング言語として広く利用されていますが、実際にアプリケーションを作成する際には、ユーザーとインタラクションできる「グラフィカルユーザーインターフェース(GUI)」が必要になることがあります。そこで登場 ...
PythonのTkinterでGUIアプリを作っていると、ユーザーに決まった選択肢の中から一つを選んでほしい、という場面がよくありますよね。例えば、都道府県のリストや、製品のカテゴリ一覧などです。テキストボックスに自由入力させると、タイプミスや表記の ...
This is a very basic but complete implementation of rithmomachia in python, using tkinter for the GUI. It comtains a standalone function launch_rithmomachia_gui() (run on the command line) to start a ...
In any Tkinter program, the first thing you need is a window. This window will act as a container for your app. This line brings the Tkinter library into your program. We give it the nickname tk so we ...
In this tutorial, we'll walk you through the process of creating a table widget for displaying tabular data using Tkinter and the ttkbootstrap GUI library. We will also cover how to build a fully ...
So far we have seen labels, buttons, images, etc in Python’s built-in toolkit Tkinter. With any of the widgets, we were using a method called pack(). And if you are like me you would love to explore ...