prog10_1.py

import time

for n in range(5):
    print(n)
    time.sleep(1)
print("終了〜")

# プログラム10-1(カウントアップ)