暂停一秒输出。
使用 time 模块的 sleep() 函数。
import time list1 = [1, 2, 3, 4, 5] for i in list1: print(i) time.sleep(1) # 暂停 1 秒