반응형 타임아웃1 [Python] 스레드 종료를 기다리기 위한 join 이해하기 스레드가 종료될 때까지 메인 프로그램을 대기시키기 위한 방법을 이해합니다. 목차 개발 의도import threadingimport timecount = 0def worker(): global count print("Worker thread is starting") for i in range(5): count += 1 time.sleep(1) print("Worker thread has finished")# 스레드 생성thread = threading.Thread(target=worker)# 스레드 시작thread.start()# count 값 출력print(count)# 출력값: Worker thread is starting / 0 / (5초 뒤) Wor.. 2024. 11. 16. 이전 1 다음 반응형