Python argparse 将参数存储为列表而不是整数。混淆还是正确?
Python argparse storing arguments as lists rather than ints. Confusing or correct?
我正在使用两个测试脚本自学如何使用 Python 中的 argparse
和 subprocess
库。我对 add_argument()
中的 type=int
值感到困惑。
calculator.py:
import sys
x = int(sys.argv[1])
y = int(sys.argv[2])
print(x,y)
print(x+y)
wrapper.py:
from subprocess import run
import argparse
import sys
parser = argparse.ArgumentParser(description='Wrapper.')
parser.add_argument('-x', nargs=1, type=int, dest='x', default=0, help='x.', required=True)
parser.add_argument('-y', nargs=1, type=int, dest='y', default=0, help='y.', required=True)
args = parser.parse_args()
if len(sys.argv) == 1:
parser.print_help()
else:
print('args.x and args.y')
run(["python","calculator.py", str(args.x), str(args.y)])
print('args.x[0] and args.y[0]')
run(["python","calculator.py", str(args.x[0]), str(args.y[0])])
输出:
args.x and args.y
[1] [8]
[1][8]
args.x[0] and args.y[0]
1 8
9
对我来说,以上是意想不到的行为。我希望 args.x 和 args.y 的值是整数,但它们是具有单个条目的列表。有人可以解释为什么会这样以及如何更改我的 add_argument
行以存储整数 and/or 证明 argparse
的正确用法吗?
这个问题:Python argparse: default argument stored as string, not list 被标记为相似。虽然解决方案是相同的,但问题不是 - 问题是关于默认值 not 是一个列表,这里存储的值 是 一个列表。在那个问题中,标题没有问与 body 相同的问题,因此我没有意识到我可以使用那个问题的答案。我已经提交了对该问题的详细说明。
删除 nargs=1
部分。
来自:https://docs.python.org/3/library/argparse.html#nargs
Note that nargs=1 produces a list of one item. This is different from the default, in which the item is produced by itself.
我正在使用两个测试脚本自学如何使用 Python 中的 argparse
和 subprocess
库。我对 add_argument()
中的 type=int
值感到困惑。
calculator.py:
import sys
x = int(sys.argv[1])
y = int(sys.argv[2])
print(x,y)
print(x+y)
wrapper.py:
from subprocess import run
import argparse
import sys
parser = argparse.ArgumentParser(description='Wrapper.')
parser.add_argument('-x', nargs=1, type=int, dest='x', default=0, help='x.', required=True)
parser.add_argument('-y', nargs=1, type=int, dest='y', default=0, help='y.', required=True)
args = parser.parse_args()
if len(sys.argv) == 1:
parser.print_help()
else:
print('args.x and args.y')
run(["python","calculator.py", str(args.x), str(args.y)])
print('args.x[0] and args.y[0]')
run(["python","calculator.py", str(args.x[0]), str(args.y[0])])
输出:
args.x and args.y
[1] [8]
[1][8]
args.x[0] and args.y[0]
1 8
9
对我来说,以上是意想不到的行为。我希望 args.x 和 args.y 的值是整数,但它们是具有单个条目的列表。有人可以解释为什么会这样以及如何更改我的 add_argument
行以存储整数 and/or 证明 argparse
的正确用法吗?
这个问题:Python argparse: default argument stored as string, not list 被标记为相似。虽然解决方案是相同的,但问题不是 - 问题是关于默认值 not 是一个列表,这里存储的值 是 一个列表。在那个问题中,标题没有问与 body 相同的问题,因此我没有意识到我可以使用那个问题的答案。我已经提交了对该问题的详细说明。
删除 nargs=1
部分。
来自:https://docs.python.org/3/library/argparse.html#nargs
Note that nargs=1 produces a list of one item. This is different from the default, in which the item is produced by itself.