python sys.argv[]用法实例详解


Posted in Python onMay 25, 2018

sys.argv[]是用来获取命令行参数的,sys.argv[0]表示代码本身文件路径,所以参数从1开始,以下两个例子说明:

1、使用sys.argv[]的一简单实例:

以下是sample1.py文件:

import sys,os  
print sys.argv 
os.system(sys.argv[1])

这个例子os.system接收命令行参数,运行参数指令,cmd命令行带参数运行python sample1.py notepad,将打开记事本程序。

2、这个例子是简明python教程上的,明白它之后你就明白sys.argv[]了。

以下是sample.py文件:

#!/usr/bin/env python  
#_*_ coding:utf-8 _*_  
import sys   
def readfile(filename): #定义readfile函数,从文件中读出文件内容   
  '''''''''Print a file to the standard output.'''   
  f = file(filename)   
  while True:   
    line = f.readline()   
    if len(line) == 0:   
      break   
    print line, # notice comma 分别输出每行内容   
  f.close()   
# Script starts from here  
print sys.argv  
if len(sys.argv) < 2:   
  print 'No action specified.'   
  sys.exit()   
if sys.argv[1].startswith('--'):   
  option = sys.argv[1][2:]   
  # fetch sys.argv[1] but without the first two characters   
  if option == 'version': #当命令行参数为-- version,显示版本号   
    print 'Version 1.2'   
  elif option == 'help': #当命令行参数为--help时,显示相关帮助内容   
    print ''' 
This program prints files to the standard output.  
Any number of files can be specified.  
Options include:  
 --version : Prints the version number  
 --help  : Display this help'''   
  else:   
    print 'Unknown option.'   
  sys.exit()   
else:   
  for filename in sys.argv[1:]: #当参数为文件名时,传入readfile,读出其内容   
    readfile(filename)

在与sample.py同一目录下,新建3个记事本文件test.txt,test1.txt,test2.txt,内容如下图:    

python sys.argv[]用法实例详解               python sys.argv[]用法实例详解              python sys.argv[]用法实例详解                   

验证sample.py,如下:

C:\Users\91135\Desktop>python sample.py
 ['sample.py']
No action specified.
C:\Users\91135\Desktop>python sample.py --help
['sample.py', '--help']
This program prints files to the standard output.
 Any number of files can be specified.
 Options include:
  --version : Prints the version number
 --help  : Display this help
C:\Users\91135\Desktop>python sample.py --version
 ['sample.py', '--version']
Version 1.2
C:\Users\91135\Desktop>python sample.py --ok
 ['sample.py', '--ok']
Unknown option.
C:\Users\91135\Desktop>python sample.py test.txt
 ['sample.py', 'test.txt']
hello python!
C:\Users\91135\Desktop>python sample.py test.txt test1.txt test2.txt
 ['sample.py', 'test.txt', 'test1.txt', 'test2.txt']
 hello python!
 hello world!
hello wahaha!
goodbye!
C:\Users\91135\Desktop>

总结

以上所述是小编给大家介绍的python sys.argv[]用法实例详解,希望对大家有所帮助,如果大家有任何疑问请给我留言,小编会及时回复大家的。在此也非常感谢大家对三水点靠木网站的支持!

Python 相关文章推荐
Python中使用socket发送HTTP请求数据接收不完整问题解决方法
Feb 04 Python
Python实现TCP/IP协议下的端口转发及重定向示例
Jun 14 Python
Python文件和流(实例讲解)
Sep 12 Python
pandas按若干个列的组合条件筛选数据的方法
Apr 11 Python
利用python求积分的实例
Jul 03 Python
在PyCharm中控制台输出日志分层级分颜色显示的方法
Jul 11 Python
用Python从0开始实现一个中文拼音输入法的思路详解
Jul 20 Python
Pytorch保存模型用于测试和用于继续训练的区别详解
Jan 10 Python
Pytorch之finetune使用详解
Jan 18 Python
解决python图像处理图像赋值后变为白色的问题
Jun 04 Python
Python GUI之tkinter窗口视窗教程大集合(推荐)
Oct 20 Python
TensorFlow的自动求导原理分析
May 26 Python
python切片及sys.argv[]用法详解
May 25 #Python
windows下python安装pip图文教程
May 25 #Python
python3.6使用pymysql连接Mysql数据库
May 25 #Python
python matplotlib绘图,修改坐标轴刻度为文字的实例
May 25 #Python
Python二叉树定义与遍历方法实例分析
May 25 #Python
matplotlib 纵坐标轴显示数据值的实例
May 25 #Python
对python中Matplotlib的坐标轴的坐标区间的设定实例讲解
May 25 #Python
You might like
php 删除数组元素
2009/01/16 PHP
Symfony查询方法实例小结
2017/06/28 PHP
javascript 关闭IE6、IE7
2009/06/01 Javascript
我遇到的参数传递中 双引号单引号嵌套问题
2010/02/11 Javascript
JS替换文本域内的回车示例
2014/02/18 Javascript
js文件Cookie存取值示例代码
2014/02/20 Javascript
jQuery中animate()方法用法实例
2014/12/24 Javascript
jQuery实现简单的日期输入格式化控件
2015/03/12 Javascript
使用Promise链式调用解决多个异步回调的问题
2017/01/15 Javascript
JS中去掉array中重复元素的方法
2017/05/26 Javascript
BootStrap 动态表单效果
2017/06/02 Javascript
详解vue通过NGINX部署在子目录或者二级目录实践
2018/09/03 Javascript
详解解决小程序中webview页面多层history返回问题
2019/08/20 Javascript
js对象数组和对象的使用实例详解
2019/08/27 Javascript
swiperjs实现导航与tab页的联动
2020/12/13 Javascript
javascript中闭包closure的深入讲解
2021/03/03 Javascript
python对url格式解析的方法
2015/05/13 Python
Python入门之modf()方法的使用
2015/05/15 Python
Python Requests安装与简单运用
2016/04/07 Python
浅谈Scrapy框架普通反爬虫机制的应对策略
2017/12/28 Python
Python request设置HTTPS代理代码解析
2018/02/12 Python
django如何连接已存在数据的数据库
2018/08/14 Python
Python socket连接中的粘包、精确传输问题实例分析
2020/03/24 Python
Python tkinter之ComboBox(下拉框)的使用简介
2021/02/05 Python
python tkinter实现下载进度条及抖音视频去水印原理
2021/02/07 Python
南非领先的在线旅行社:Travelstart南非
2016/09/04 全球购物
学习标兵获奖感言
2014/02/20 职场文书
我们的节日清明节活动总结
2014/04/30 职场文书
2014年企业员工工作总结
2014/12/09 职场文书
武侯祠导游词
2015/02/04 职场文书
综合办公室岗位职责
2015/04/11 职场文书
文艺演出主持词
2015/07/01 职场文书
廉洁自律承诺书2016
2016/03/25 职场文书
Python 制作自动化翻译工具
2021/04/25 Python
Mysql中调试存储过程最简单的方法
2021/06/30 MySQL
JUnit5常用注解的使用
2021/07/02 Java/Android