我有一个依赖于 argparse 的脚本。脚本的主体有这样的 if 语句:
if results.short == True and results.verbose == False and results.verbose2 == False and results.list == False and results.true == False:
没有更短的方法吗?假设我有超过这 5 个参数,在每个语句中输入每个参数似乎都是重复性的工作。
不能这样做:
if results.short == True and "results.%s"== False % (everyotherresults.something):
我正在为 Python 2.7 编写