- Python 基础知识
- Python - 主页
- Python - 概述
- Python - 历史
- Python - 特性
- Python 与 C++
- Python——Hello World 程序
- Python - 应用领域
- Python解释器
- Python-环境设置
- Python-虚拟环境
- Python - 基本语法
- Python - 变量
- Python - 数据类型
- Python - 类型转换
- Python - Unicode 系统
- Python - 文字
- Python - 运算符
- Python - 运算符优先级
- Python - 算术运算符
- Python - 赋值运算符
- Python - 增强运算符
- Python - 比较运算符
- Python - 逻辑运算符
- Python - 位运算符
- Python - 会员运算符
- Python - 身份运算符
- Python - 注释
- Python - 用户输入
- Python - 数字
- Python - 布尔值
- Python 控制语句
- Python - 控制流
- Python - 决策
- Python - 如果有的话
- Python - 大小写匹配语句
- Python - for 循环
- Python - for-else 循环
- Python - While 循环
- Python-break语句
- Python-继续语句
- Python - pass 语句
- Python 函数和模块
- Python - 函数
- Python - 默认参数
- Python - 关键字参数
- Python - 仅关键字参数
- Python - 位置参数
- Python - 仅位置参数
- Python - 任意参数
- Python - 变量作用域
- Python - 函数注释
- Python - 模块
- Python - 内置函数
- Python 字符串
- Python-字符串
- Python - 字符串切片
- Python-修改字符串
- Python-字符串连接
- Python——字符串格式化
- Python - 转义字符
- Python - 字符串方法
- Python - 弦乐练习
- Python 列表
- Python - 列表
- Python - 访问列表项
- Python - 更改列表项
- Python - 添加列表项
- Python - 删除列表项
- Python - 循环列表
- Python - 列表理解
- Python - 列表排序
- Python - 复制列表
- Python - 连接列表
- Python - 列表方法
- Python - 列出练习
- Python 元组
- Python - 元组
- Python - 访问元组项
- Python - 更新元组
- Python - 解压元组
- Python - 循环元组
- Python - 连接元组
- Python - 元组方法
- Python - 元组练习
- Python 集
- Python - 集合
- Python - 访问设置项
- Python - 添加设置项
- Python - 删除设置项
- Python - 循环集
- Python - 连接集
- Python - 复制集
- Python - 集合运算符
- Python - 设置方法
- Python - 设置练习
- Python 字典
- Python - 字典
- Python - 访问字典项目
- Python - 更改字典项目
- Python - 添加字典项
- Python - 删除字典项
- Python - 字典查看对象
- Python - 循环字典
- Python - 复制字典
- Python - 嵌套字典
- Python - 字典方法
- Python - 字典练习
- Python 数组
- Python-数组
- Python - 访问数组项
- Python - 添加数组项
- Python - 删除数组项
- Python - 循环数组
- Python - 复制数组
- Python - 反转数组
- Python - 数组排序
- Python - 连接数组
- Python - 数组方法
- Python - 数组练习
- Python 文件处理
- Python - 文件处理
- Python-写入文件
- Python-读取文件
- Python - 重命名和删除文件
- Python - 目录
- Python - 文件方法
- Python - 操作系统文件/目录方法
- 面向对象编程
- Python - OOP 概念
- Python - 对象和类
- Python - 类属性
- Python - 类方法
- Python - 静态方法
- Python - 构造函数
- Python - 访问修饰符
- Python——继承
- Python——多态性
- Python - 方法重写
- Python - 方法重载
- Python - 动态绑定
- Python - 动态类型
- Python - 抽象
- Python-封装
- Python - 接口
- Python - 包
- Python - 内部类
- Python - 匿名类和对象
- Python-单例类
- Python - 包装类
- Python-枚举
- Python-反射
- Python 错误与异常
- Python - 语法错误
- Python - 异常
- Python - try- except 块
- Python - try-finally 块
- Python - 引发异常
- Python - 异常链
- Python - 嵌套 try 块
- Python - 用户定义的异常
- Python-日志记录
- Python-断言
- Python - 内置异常
- Python 多线程
- Python-多线程
- Python-线程生命周期
- Python - 创建线程
- Python - 启动线程
- Python - 连接线程
- Python - 命名线程
- Python-线程调度
- Python-线程池
- Python - 主线程
- Python-线程优先级
- Python - 守护线程
- Python - 同步线程
- Python同步
- Python-线程间通信
- Python-线程死锁
- Python - 中断线程
- Python 网络
- Python-网络
- Python-套接字编程
- Python-URL 处理
- Python - 泛型
- Python 杂项
- Python - 日期和时间
- Python - 数学
- Python - 迭代器
- Python - 生成器
- Python - 闭包
- Python - 装饰器
- Python - 递归
- Python - 正则表达式
- Python-PIP
- Python-数据库访问
- Python - 弱引用
- Python-序列化
- Python - 模板
- Python - 输出格式
- Python-性能测量
- Python-数据压缩
- Python - CGI 编程
- Python - XML 处理
- Python - 图形用户界面编程
- Python - 命令行参数
- Python - 文档字符串
- Python-JSON
- Python-发送电子邮件
- Python - 进一步扩展
- Python - 工具/实用程序
- Python - 图形用户界面
- Python 问题与解答
- Python - 编程示例
- Python - 快速指南
- Python - 有用的资源
- Python - 讨论
Python - 命令行参数
要运行Python程序,我们在操作系统的命令提示符终端中执行以下命令。例如,在Windows中,在Windows命令提示符终端中输入以下命令。
命令提示符 C:\> 前面的行(或 Linux 操作系统中的 $)称为命令行。
如果程序需要接受用户的输入,则使用Python的input()函数。当从命令行执行程序时,从命令终端接受用户输入。
例子
name = input("Enter your name: ") print ("Hello {}. How are you?".format(name))
该程序从命令提示符终端运行,如下所示 -
很多时候,您可能需要将程序要使用的数据放在命令行本身中并在程序内部使用它。在命令行中提供数据的示例可以是 Windows 或 Linux 中的任何 DOS 命令。
在 Windows 中,您可以使用以下 DOS 命令将文件 hello.py 重命名为 hi.py。
C:\Python311>ren hello.py hi.py
在 Linux 中,您可以使用 mv 命令 -
$ mv hello.py hi.py
这里 ren 或 mv 是需要旧文件名和新文件名的命令。由于它们与命令一致,因此称为命令行参数。
您可以从命令行将值传递给 Python 程序。Python 将参数收集在列表对象中。Python 的 sys 模块通过 sys.argv 变量提供对任何命令行参数的访问。sys.argv 是命令行参数列表,sys.argv[0] 是程序,即脚本名称。
hello.py 脚本在脚本运行后使用 input() 函数接受用户输入。让我们将其更改为接受来自命令行的输入。
import sys print ('argument list', sys.argv) name = sys.argv[1] print ("Hello {}. How are you?".format(name))
从命令行运行程序,如下图所示 -
输出如下所示-
C:\Python311>python hello.py Rajan argument list ['hello.py', 'Rajan'] Hello Rajan. How are you?
命令行参数始终存储在字符串变量中。要将它们用作数字,您可以适当地使用类型转换函数。
在以下示例中,输入两个数字作为命令行参数。在程序内部,我们使用 int() 函数将它们解析为整型变量。
import sys print ('argument list', sys.argv) first = int(sys.argv[1]) second = int(sys.argv[2]) print ("sum = {}".format(first+second))
它将产生以下输出-
C:\Python311>python hello.py 10 20 argument list ['hello.py', '10', '20'] sum = 30
Python 的标准库包含一些有用的模块来解析命令行参数和选项 -
getopt - 用于命令行选项的 C 风格解析器。
argparse - 命令行选项、参数和子命令的解析器。
getopt 模块
Python 提供了一个getopt模块来帮助您解析命令行选项和参数。该模块提供了两个函数和一个异常来启用命令行参数解析。
getopt.getopt 方法
该方法解析命令行选项和参数列表。以下是此方法的简单语法 -
getopt.getopt(args, options, [long_options])
这是参数的详细信息 -
args - 这是要解析的参数列表。
options - 这是脚本想要识别的选项字母字符串,需要参数的选项后面应该跟一个冒号(:)。
long_options - 这是一个可选参数,如果指定,则必须是包含应该支持的长选项名称的字符串列表。需要参数的长选项后面应该跟一个等号('=')。要仅接受长选项,选项应该是空字符串。
此方法返回一个由两个元素组成的值 - 第一个是(选项,值)对的列表,第二个是删除选项列表后留下的程序参数列表。
返回的每个选项和值对都将选项作为其第一个元素,前缀为短选项的连字符(例如“-x”)或长选项的两个连字符(例如“--long-option”)。
异常 getopt.GetoptError
当在参数列表中找到无法识别的选项或没有给出需要参数的选项时,会引发此错误。
异常的参数是一个指示错误原因的字符串。属性 msg 和 opt 给出错误消息和相关选项。
例子
假设我们想通过命令行传递两个文件名,并且我们还想提供一个选项来检查脚本的使用情况。该脚本的用法如下 -
usage: test.py -i <inputfile> -o <outputfile>
这是 test.py 的以下脚本 -
import sys, getopt def main(argv): inputfile = '' outputfile = '' try: opts, args = getopt.getopt(argv,"hi:o:",["ifile=","ofile="]) except getopt.GetoptError: print ('test.py -i <inputfile> -o <outputfile>') sys.exit(2) for opt, arg in opts: if opt == '-h': print ('test.py -i <inputfile> -o <outputfile>') sys.exit() elif opt in ("-i", "--ifile"): inputfile = arg elif opt in ("-o", "--ofile"): outputfile = arg print ('Input file is "', inputfile) print ('Output file is "', outputfile) if __name__ == "__main__": main(sys.argv[1:])
现在,运行上面的脚本如下 -
$ test.py -h usage: test.py -i <inputfile> -o <outputfile> $ test.py -i BMP -o usage: test.py -i <inputfile> -o <outputfile> $ test.py -i inputfile -o outputfile Input file is " inputfile Output file is " outputfile
argparse 模块
argparse模块提供了用于编写非常易于使用的命令行界面的工具。它处理如何解析sys.argv列表中收集的参数,自动生成帮助并在给出无效选项时发出错误消息。
设计命令行界面的第一步是设置解析器对象。这是通过argparse 模块中的ArgumentParser()函数完成的。可以给该函数一个解释性字符串作为描述参数。
首先,我们的脚本将从命令行执行,不带任何参数。仍然使用解析器对象的parse_args()方法,该方法不执行任何操作,因为没有给出任何参数。
import argparse parser=argparse.ArgumentParser(description="sample argument parser") args=parser.parse_args()
当上面的脚本运行时 -
C:\Python311>python parser1.py C:\Python311>python parser1.py -h usage: parser1.py [-h] sample argument parser options: -h, --help show this help message and exit
第二个命令行用法给出了-help选项,它会生成如图所示的帮助消息。-help参数默认可用。
现在让我们定义一个参数,该参数对于脚本运行是必需的,如果没有给出脚本将抛出错误。这里我们通过 add_argument() 方法定义参数“user”。
import argparse parser=argparse.ArgumentParser(description="sample argument parser") parser.add_argument("user") args=parser.parse_args() if args.user=="Admin": print ("Hello Admin") else: print ("Hello Guest")
该脚本的帮助现在以“用户”的形式显示一个位置参数。程序检查它的值是否为“Admin”并打印相应的消息。
C:\Python311>python parser2.py --help usage: parser2.py [-h] user sample argument parser positional arguments: user options: -h, --help show this help message and exit
使用以下命令 -
C:\Python311>python parser2.py Admin Hello Admin
但以下用法会显示 Hello Guest 消息。
C:\Python311>python parser2.py Rajan Hello Guest
add_argument() 方法
我们可以为 add_argument() 方法中的参数分配默认值。
import argparse parser=argparse.ArgumentParser(description="sample argument parser") parser.add_argument("user", nargs='?',default="Admin") args=parser.parse_args() if args.user=="Admin": print ("Hello Admin") else: print ("Hello Guest")
这里 nargs 是应该使用的命令行参数的数量。'?'。如果可能的话,将从命令行使用一个参数,并将其作为单个项目生成。如果不存在命令行参数,则将生成默认值。
默认情况下,所有参数都被视为字符串。要显式提及参数类型,请在 add_argument() 方法中使用类型参数。所有 Python 数据类型都是有效的类型值。
import argparse parser=argparse.ArgumentParser(description="add numbers") parser.add_argument("first", type=int) parser.add_argument("second", type=int) args=parser.parse_args() x=args.first y=args.second z=x+y print ('addition of {} and {} = {}'.format(x,y,z))
它将产生以下输出-
C:\Python311>python parser3.py 10 20 addition of 10 and 20 = 30
在上面的例子中,参数是强制性的。要添加可选参数,请在其名称前加上双破折号 -- 前缀。在以下情况下,姓氏参数是可选的,因为它以双破折号(--surname)为前缀。
import argparse parser=argparse.ArgumentParser() parser.add_argument("name") parser.add_argument("--surname") args=parser.parse_args() print ("My name is ", args.name, end=' ') if args.surname: print (args.surname)
以单破折号为前缀的单字母参数名称充当短名称选项。
C:\Python311>python parser3.py Anup My name is Anup C:\Python311>python parser3.py Anup --surname Gupta My name is Anup Gupta
如果希望参数仅从定义的列表中取值,则将其定义为选择参数。
import argparse parser=argparse.ArgumentParser() parser.add_argument("sub", choices=['Physics', 'Maths', 'Biology']) args=parser.parse_args() print ("My subject is ", args.sub)
请注意,如果参数值不在列表中,则会显示无效选择错误。
C:\Python311>python parser3.py Physics My subject is Physics C:\Python311>python parser3.py History usage: parser3.py [-h] {Physics,Maths,Biology} parser3.py: error: argument sub: invalid choice: 'History' (choose from 'Physics', 'Maths', 'Biology')