【shell】 shell调用python脚本,并且向python脚本传递参数
文章目录1.shell调用python脚本,并且向python脚本传递参数1.shell调用python脚本,并且向python脚本传递参数shell中:#定义变量para1=''para2=''#调用py脚本,并传递参数python test.py $para1 $para2python中:import sys#定义main,接收2个参数def main(canshu1, canshu2)...
·
1.shell调用python脚本,并且向python脚本传递参数
shell中:
#定义变量
para1=''
para2=''
#调用py脚本,并传递参数
python test.py $para1 $para2
python文件test.py:
import sys
#定义main,接收2个参数
def main(canshu1, canshu2)
.....
#通过sys.argv获得入参
main(sys.argv[1], sys.argv[2])
2. 调用python脚本中的某个方法
章节1中的是调用默认的main方法,如果想指定调用某个方法呢?
我们假设test.py中有个其他方法 test1和test2:
import sys
#定义test1,无参数
def test()
#定义test2,接收1个参数
def test2(param)
.....
想通过shell调用里面的test,只需要在shell中执行一个调用的命令行即可:
python -c 'import test; print test.test1()'
如果想调用test2,需要传递一个参数:
param='abc'
python -c "import test; print test.test2('${param}')"
注意外层引号为双引号,这样里面可以通过${}传递参数了,但是需要额外加单引号,表示字符串。
开放原子开发者工作坊旨在鼓励更多人参与开源活动,与志同道合的开发者们相互交流开发经验、分享开发心得、获取前沿技术趋势。工作坊有多种形式的开发者活动,如meetup、训练营等,主打技术交流,干货满满,真诚地邀请各位开发者共同参与!
更多推荐
已为社区贡献58条内容
所有评论(0)