파이썬의 스레드에서 반환 값을 얻는 방법은 무엇입니까? 함수 foo반환 아래 문자열 'foo'. 'foo'스레드 대상에서 반환되는 값 을 어떻게 얻을 수 있습니까? from threading import Thread def foo(bar): print('hello {}'.format(bar)) return 'foo' thread = Thread(target=foo, args=('world!',)) thread.start() return_value = thread.join() : 위의 "그것을 할 수있는 하나의 확실한 방법은"작동하지 않습니다 thread.join()반환 None. FWIW, multiprocessing모듈은 Pool클래스를 사용하여 멋진 인터페이스를 제공합니다 . 프로세스가 아닌 스레드를..