I write my interests on the weblog.
Weblog
CGIHTTPServerでWEBサーバー
pythonでのウェブアプリの動作確認の簡単な方法 WEBサーバーの起動 python >>> import CGIHTTPServer >>> CGIHTTPServer.test() アクセスはhttp://127.0.0.1:8000で可能
Weblog
リバーシ作成
pythonでリバーシ作ったよ。 コマが置けるかどうかの判定が難しかったよ! Python 2.6.5で確認。 #!/usr/bin/python # -*- coding: utf-8 -*- """ module details """ #import sys import random class ReversBoard: def __init__(self): self.board = [ [0, 0,