t1.start() # 执行线程t1.join() # 阻塞
t1.setDaemon(True) #守护线程
threading.current_thread() # 查看执行的是哪一个线程threading.active_count() # 活动着的主线程与子线程