GUIを構築・操作するために用いるPythonに標準搭載されているライブラリである ※Python3、Windows環境での動作を想定しています # -*- coding: utf-8 -*- import tkinter as tk import tkinter.ttk as ttk class SampleApp(ttk.Frame): def __init__(self, master): ...