python 脚本传递参数

Posted 山竹果 BLOG

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python 脚本传递参数相关的知识,希望对你有一定的参考价值。

给python程序传递参数

运行python脚本时有时需要执行实传递参数

在linux下:

[root@Test ~]# cat /opt/python.py 
#!/usr/local/bin/python
# -*- coding:utf-8 -*-

import sys

print(sys.argv[0])          #sys.argv[0] 类似于shell中的$0,但不是脚本名称,而是脚本的路径   
print(sys.argv[1])          #sys.argv[1] 表示传入的第一个参数,既 hello

#运行结果:

[root@Test ~]# python /opt/python.py hello
/opt/python.py       #打印argv[0]  脚本路径
hello                      #打印argv[1]  传入的参数 hello

在windows 下:

打开CMD或powershell,切换到python脚本所在位置,使用python filename.py执行脚本

#编辑  D:\\Python\\Study\\python.py
#内容如下:
#!/usr/bin/env python
# -*-coding:utf-8 -*-

import sys

print(sys.argv[0])
print(sys.argv[1])

进入powershell  
PS C:\\Windows\\system32> cd D:\\Python\\Study   #进入目录

PS D:\\Python\\Study> python python.py     #执行python脚本 (未传参数)
python.py                                                    #报错信息
Traceback (most recent call last):
  File "python.py", line 7, in <module>
    print(sys.argv[1])
IndexError: list index out of range

PS D:\\Python\\Study> python python.py hello  #传入参数(正常运行)
python.py
hello

或以绝对路径执行:
PS D:\\Python\\Study> python D:\\Python\\Study\\python.py hello
D:\\Python\\Study\\python.py
hello

PyCharm 下运行python脚本并传递参数

编辑脚本:

Alt + Shift + F10 执行

报错

传递参数的方法:

Alt + Shift + F10 弹出

选择:Edit configurations 弹出

在左侧选择要传入参数的文件,在右侧Configuration-->Script parameters 中添加要传递的参数 --> RUN

执行结果:

 

以上是关于python 脚本传递参数的主要内容,如果未能解决你的问题,请参考以下文章

从 Python 向 SQLPlus 脚本传递参数

使用参数在python脚本之间传递函数

python 脚本函数传递参数

Python - 如何使用池映射传递多个参数 [重复]

如何在 Python 中使用 argparse 传递 Shell 脚本样式参数

如何将2D数组作为参数从C#传递给python