gpt4 book ai didi

Python 参数解析

转载 作者:太空宇宙 更新时间:2023-11-04 03:30:39 26 4
gpt4 key购买 nike

我想使用 Python ArgParse 仅接受来自用户的某些输入。

所以在下面的示例中,假设我只想接受“type1/type2/type3”作为参数。那可能吗?

parser.add_argument('-t', '--type', type = str, help = 'type1/type2/type3')

最佳答案

使用 choices argument将输入限制为一组有限的选择:

parser.add_argument('-t', '--type', choices=('type1', 'type2', 'type3'), 
help='type1/type2/type3')

关于Python 参数解析,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31219787/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com