摘要: import time import sys for i in range(100): sys.stdout.write(str(i)+'>') time.sleep(1) sys.stdout.flush() 输出效果 python3 a.py 0>1>2>3>4>5>6>7>8>9>10>11> 阅读全文
posted @ 2021-08-10 10:49 宝山方圆 阅读(501) 评论(0) 推荐(0)