选择性结构上的python函数argeparse:无法识别的参数
Posted
技术标签:
【中文标题】选择性结构上的python函数argeparse:无法识别的参数【英文标题】:python function argeparse on selective structure: unrecognized arguments 【发布时间】:2019-11-17 01:57:27 【问题描述】:我正在使用一个基于 argparse 的函数来将它与不同的选项一起使用并对此选项进行计算。
这很好用:
def parseArgument(argv, abv, name, hdescription):
parser=argparse.ArgumentParser(description='Show calculated data')
parser.add_argument(abv,
name,
help = hdescription,
action = "store_true",
)
args=parser.parse_args()
return args
args_h = parseArgument(['-y'],"-y", "--humedity", "Calculate humedity average", False)
if args_h.humedity:
print("\nHUMEDITY CYCLE: ", DPV(w, 2, HR_CYCLE, count_NC))
但是当我尝试添加更多选项时 (args_t.temperature
),我会得到error: unrecognized argument -y
def parseArgument(argv, abv, name, hdescription):
parser=argparse.ArgumentParser(description='Show calculated data')
parser.add_argument(abv,
name,
help = hdescription,
action = "store_true",
)
args=parser.parse_args()
return args
args_h = parseArgument(['-y'],"-y", "--humedity", "Calculate humedity average", False)
args_t = parseArgument(['-t'],"-t", "--tempature", "Calculate temp average", False)
if args_h.humedity:
print("\nHUMEDITY CYCLE: ", DPV(w, 2, HR_CYCLE, count_NC))
elif args_t.temperature:
print("\nTEMPERATURE CYCLE", DPV(w,1,TR_CYCLE,count_NC))
我希望将此结构与 argparse 函数的不同选项一起使用:
if args_h.humedity:
...
elif args_t.temp:
...
elif args_other.other:
...
当我运行 script.py -y
usage: cycle.py [-h] [-t]
cycle.py: error: unrecognized arguments: -y```
**When I use script.py -h**
```usage: cicly.py [-h] [-y]
optional arguments:
-h, --help show this help message and exit
-y, --humedity Calculates humedity average
```
**doesn't show [-t]**
【问题讨论】:
您需要一次将每个选项添加到解析器 @abdusco 如何用这个函数解决这个问题? 【参考方案1】:您需要像这样一次将每个选项添加到解析器:
import sys
import argparse
def parse_arguments():
parser = argparse.ArgumentParser(description='Show calculated data')
parser.add_argument('-y', '--humidity',
help='Calculate humidity average',
action="store_true")
parser.add_argument('-t', '--temperature',
help='Calculate temperature average',
action="store_true")
args = parser.parse_args()
return args, parser
def main():
args, parser = parse_arguments()
if len(sys.argv) < 2:
return parser.print_help()
if args.temperature:
print('will calculate temperature')
if args.humidity:
print('will calculate humidity')
if __name__ == "__main__":
main()
不带任何参数调用python calc.py
给出:
> python args.py
usage: calc.py [-h] [-y] [-t]
Show calculated data
optional arguments:
-h, --help show this help message and exit
-y, --humidity Calculate humidity average
-t, --temperature Calculate temperature average
带有一些开关:
> python calc.py -y -t
will calculate temperature
will calculate humidity
【讨论】:
以上是关于选择性结构上的python函数argeparse:无法识别的参数的主要内容,如果未能解决你的问题,请参考以下文章
今天是星期天再过一百天是星期几用python选择结构怎么写?