zoukankan      html  css  js  c++  java
  • 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:PythonStudypython.py
    #内容如下:
    #!/usr/bin/env python
    # -*-coding:utf-8 -*-
    
    import sys
    
    print(sys.argv[0])
    print(sys.argv[1])
    
    进入powershell  
    PS C:Windowssystem32> cd D:PythonStudy   #进入目录
    
    PS D:PythonStudy> 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:PythonStudy> python python.py hello  #传入参数(正常运行)
    python.py
    hello
    
    或以绝对路径执行:
    PS D:PythonStudy> python D:PythonStudypython.py hello
    D:PythonStudypython.py
    hello
  • 相关阅读:
    centos下安装mycat
    centos下安装MySQL5.7
    centos下yum安装wget失败
    开心消消乐刷金币
    myBatis获取批量插入数据的主键id
    nginx: [emerg] bind() to 0.0.0.0:80 failed (13: Permission denied)
    Mac下安装JDK 6
    VI下删除所有内容
    Mac下lombok无法安装到eclipse mars
    WEB-INF目录下的文件访问权限
  • 原文地址:https://www.cnblogs.com/php-linux/p/11978051.html
Copyright © 2011-2022 走看看