如图
time.sleep(1) # 延迟时间执行代码,并不会输出具体时间
import time for i in range(10): time.sleep(1) print ("Start : %s" % time.ctime())