mirror of
https://github.com/ocogeclub/ocoge.git
synced 2024-11-22 15:49:48 +00:00
15 lines
323 B
Python
15 lines
323 B
Python
|
#!/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'
|
||
|
|