Hgwr 2010年8月19日 (木) 17:15 (UTC) 単純な GUI ストップウォッチです。 Python で Tkinter をつかってます。 このストップウォッチを使うと、カップラーメンを同時に12個作れたりします。 参考: bm python tcl/tk 、 bm tcl/tk #!/usr/bin/python # -*- coding: utf-8 -*- # # GUI ストップウォッチな Python スクリプト # import math import time import threading try: from Tkinter import * import tkFont except ImportError: # Python 3 対応 from tkinter import * import tkinter.font as tkFont # 表示するスト

