相关疑难解决方法(0)

如何迭代参数

我有这样的剧本:

import argparse

parser = argparse.ArgumentParser(
                description='Text file conversion.'
                )
parser.add_argument("inputfile",   help="file to process", type=str)
parser.add_argument("-o", "--out", default="output.txt",
                    help="output name")
parser.add_argument("-t", "--type", default="detailed",
                    help="Type of processing")

args = parser.parse_args()

for arg in args:
    print(arg)
Run Code Online (Sandbox Code Playgroud)

但它不起作用.我收到错误:

TypeError: 'Namespace' object is not iterable
Run Code Online (Sandbox Code Playgroud)

如何迭代参数及其值?

python argparse

45
推荐指数
3
解决办法
3万
查看次数

标签 统计

argparse ×1

python ×1