ocoge/scripts/test.py

15 lines
323 B
Python
Raw Normal View History

2020-01-21 07:10:10 +00:00
#!/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
sys.stdout.flush() # python2.x
time.sleep(1)
# print ('終了 - Python test')
print '終了 - Python test'