使用参数从bash调用Python脚本
我知道我可以使用以下命令从bash脚本运行python脚本" title="python脚本">python脚本:
python python_script.py
但是,如果我想将变量/自变量从bash脚本传递到python脚本,该怎么办?我怎样才能做到这一点?
基本上,bash会计算出文件名,然后python将其上传,但是当我调用它时,我需要将文件名从bash发送到python。
回答:
要在bash脚本中执行python脚本,您需要调用与终端相同的命令。例如
> python python_script.py var1 var2
要在python中访问这些变量,您将需要
import sysprint sys.argv[0] # prints python_script.py
print sys.argv[1] # prints var1
print sys.argv[2] # prints var2
以上是 使用参数从bash调用Python脚本 的全部内容, 来源链接: utcz.com/qa/415859.html