要使用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返回的值。