我有这样的剧本:
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)
如何迭代参数及其值?