20
파이썬의 스레드에서 반환 값을 얻는 방법은 무엇입니까?
함수 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.
342
python
multithreading