import subprocess
def my_function(x):
return x + 100
output = subprocess.Popen(my_function, 1) #I would like to pass the function object and its arguments
print output
#desired output: 101
별도의 스크립트를 사용하여 하위 프로세스를 여는 데 필요한 설명서 만 있습니다. 누구든지 함수 객체를 전달하는 방법이나 함수 코드를 전달하는 쉬운 방법을 알고 있습니까?스레딩이나 별도의 파일/스크립트 작성없이 하위 프로세스에서 함수를 실행할 수 있습니까?
나는 [다중 처리] (http://docs.python.org/3.1/library/multiprocessing.html) 모듈을 찾고 있다고 생각합니다. –