# (子)线程在被 start后是瞬间执行的, 但子进程会有延迟# 主线程本质上是代表本进程# 主线程必须等待所有其他线程结束之后才能结束from threading import Threadimport timedef sayhi(name): time.sleep(1)