threading Tread属性
import threadingimport timedef worker(): count = 0 while True: if count > 5: break time.sleep(2) count += 1 print(threading.current_thread().name)t = threading.Thread(target=worker, name="worker")print(t.ident)t.start()while True: time.sleep(1) if t.is_alive(): print('{} {} alive'.format(t.name, t.ident)) else: print('{} {} dead'.format(t.name, t.ident))
声明:本站所有文章资源内容,如无特殊说明或标注,均为采集网络资源。如若本站内容侵犯了原著者的合法权益,可联系本站删除。