参数解析模块argparse

这篇博客介绍了Python的参数解析模块argparse的使用,包括如何设置位置参数、指定参数输入顺序、优化帮助信息显示,以及如何提供更明确的错误提示。通过示例代码展示了argparse如何帮助开发者更好地管理命令行参数。
摘要由CSDN通过智能技术生成
import math
import argparse
# 计算一个圆柱体的体积

# 创建一个解析对象parser
parser = argparse.ArgumentParser(description='Calculate volume of a Cylinder')  #用来装载参数的容器
# description参数可以用于描述脚本的参数作用,默认为空

# 添加命令行参数
parser.add_argument('radius', type=int, help='Radius of Cylinder')  # type=str是默认的
parser.add_argument('height', type=int, help='Height of Cylinder')
args = parser.parse_args()

def cylinder_volume(radius, height):
    vol = (math.pi)*(radius**2)*(height)
    return vol

if __name__ == '__main__':
    print(cylinder_volume(args.radius, args.height))

在pycharm的Terminal中键入

D:\Code\code_py\Python_Test>python argparse_demo.py -h

usage: argparse_demo.py [-h] radius height
Calculate volume of a Cylinder
positional arguments:
  radius      Radius of Cylinder
  height      Height of Cylinder
optional arguments:
  -h, 
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值