我想從一個函數中調用外部腳本,例如:如何從Python函數中檢索調用腳本的結果?
import subprocess
def call_script(script):
subprocess.call(script)
return answer #retrieving the result is the part I'm struggling with
call_script("/user/bin/calc_delta.py")
腳本calc_delta.py只需打印出結果時,它完成。我如何將該腳本的結果分配給一個變量?謝謝。
您應該使用'/'而不是'\\'。 – kennytm 2010-07-21 17:49:10