シェルでPythonを実行できますか?
実際のケース: シェルは Python スクリプトを呼び出し、パラメーターを Python スクリプトに渡します
シェル内:
python test.py $para1 $para2
Python の場合:
import sys def main($canshu1, $canshu2) ..... main(sys.argv[1], sys.argv[2])
シェルを使用して Python で関数を呼び出す:
Python スクリプトは次のとおりです、test .py :
import ConfigParser config = ConfigParser.ConfigParser() config.read("test.conf") def get_foo(): return config.get("locations", "foo") def get_bar(): return config.get("locations", "bar")
シェルを通じて内部で get_foo を呼び出したいのですが、シェル内で呼び出しコマンド ラインを実行するだけです:
python -c 'import test; print test.get_foo()'
-c オプションは Python に指示するだけですPythonコマンドを実行します。
結果を変数に保存するには、次のようにすることができます:
RESULT_FOO=`python -c 'import test; print test.get_foo()'`
または、同様に:
RESULT=$(python -c 'import test; print test.get_foo()')
すべてのメソッドを一度に呼び出して、コレクションを入れることもできます。 、切断メソッドを呼び出して対応する値を取得します:
ALL_RESULTS=$(python -c 'import test; print test.get_foo(), test.get_bar()')
2 番目の結果が必要な場合は、それを RESULT_BAR に入れます:
RESULT_BAR=$(echo $ALL_RESULTS | cut -d' ' -f2)
以上がシェルはPythonを実行できますか?の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。