要使用shell獲取Python返回值,可以使用以下兩種方法:
result=`python script.py`
echo "The result is: $result"
result=$(python script.py)
echo "The result is: $result"
在這兩種方法中,python script.py
表示要執行的Python腳本。將其替換為實際的Python腳本文件名或命令。在shell腳本中,可以使用$result變量來引用Python返回的值。