実行を一時停止

2011/2/3

Python2.5.4

10秒止める

import time

print("start")
time.sleep(10)
print("finish")


ボタンを押すまで止める

import os
os.system("pause")