ocoge/lib/test.py

14 lines
349 B
Python
Raw Normal View History

#!/usr/bin/env python
# -*- coding: utf-8 -*-
import time
import sys
for i in range(10, 0, -1):
print(i, flush=True) # flush=True を指定することで、バッファが無効になる
# print i # python2.x
# sys.stdout.flush() # python2.x
time.sleep(1)
print("終了 - Python test")
# print '終了 - Python test' # python2.x