셸에서 Python을 실행할 수 있나요?
실제 사례: shell은 Python 스크립트를 호출하고 Python 스크립트에 매개변수를 전달합니다
#🎜🎜 #셸에서:
python test.py $para1 $para2
Python에서:
import sys def main($canshu1, $canshu2) ..... main(sys.argv[1], sys.argv[2])
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")
python -c 'import test; print test.get_foo()'
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()')
RESULT_BAR=$(echo $ALL_RESULTS | cut -d' ' -f2)
위 내용은 쉘이 파이썬을 실행할 수 있나요?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!