我想用argparse写出参数名称&它接收到文件的值。到目前为止我有这个:
import argparse
parser = argparse.ArgumentParser()
parser.add_argument("--infile", help = "seed file", default = 'test')
parser.add_argument("--lang", help="wiki language bigram", default = 'en')
parser.add_argument("--request_type", help="request type", default = 'sum')
parser.add_argument("--outfile", help = "path to outfile", default = 'outfile')
parser.add_argument("--summary", help = "true or false", action = "store_true")
parser.add_argument("--pagehits", help = "path to list of page hits", default = 'pagehits')
parser.add_argument("--exemplar_file", help = "file to inspire book")
args = parser.parse_args()
input_file = args.infile
print(args.infile)
print(var(args))
with open('modified-variables', 'w') as outfile:
outfile.write(args.infile)
outfile.write('hello world')
with --infile" / path / to / file" --lang" en"输出是:
/path/to/file
en
[but nothing written to file]
我希望它循环遍历所有位置参数,并将命令行中提供的所有内容写入格式为
的修改变量infile="/path/to/file"
lang="en"
谷歌搜索没有帮助我弄清楚如何打印argnames,并且在with / write构造中有一些简单的错误。
更新:每个答案#1添加了print(vars((args)),产生:
{'lang': 'en', 'exemplar_file': None, 'pagehits': 'pagehits', 'summary': False, 'outfile': '/tmp/pagekicker/123/out_test', 'request_type': 'sum', 'infile': '/home/fred/pagekicker-community/scripts/seeds/revolutionary-figures'}
现在我只想写
LANG ="恩" exemplar_file ="无"
等
到文件。
答案 0 :(得分:1)
你试过吗
print(args) # the default Namespace display format
或
print(vars(args))
vars(args)
是一个字典,您可以通过多种不同的方式显示它。您可以将其转换为元组列表(.items()
),您可以迭代keys
等。