1
dndx 2013-12-08 09:27:14 +08:00
|
2
TankyWoo 2013-12-08 09:39:00 +08:00
|
3
VYSE 2013-12-08 19:55:25 +08:00
sys.stdout.write不回车就是刷新当前行
|
5
VYSE 2013-12-11 00:04:17 +08:00
@caizixian
from time import sleep import sys for i in range(1000): sys.stdout.write(str(i)+'\r') sleep(0.1) |