有人能说出为什么以下脚本没有打印传递的参数吗?
import sys, getopt
def usage():
print 'Unknown arguments'
def main(argv):
try:
opts, args = getopt.getopt(argv,'fdmse:d',['files=','data-source=','mode=','start','end'])
except getopt.GetoptError:
usage()
sys.exit(999)
for opt, arg in opts:
# print opt,arg
if opt in('-f','--files'):
print 'files: ', arg #
if __name__ == "__main__":
main(sys.argv[1:])
当我在命令行运行脚本并传递参数-f=dummy.csv
时,似乎调用了usage()
- 为什么?
这是(在上面的代码中粘贴)编写try / catch块的'Pythonic'方法吗?
答案 0 :(得分:2)
你得到了答案吗?
调试python异常的一种方法是从try块中移出(或临时复制以进行调试)代码。你会得到一个完整的痕迹。
当然,另一种方法是减少测试用例。在这里,我将问题简化为三行,并尝试了@ s.lott提示的解决方案(在getopts调用中使用'f:'),并且最后还显示了如何使用某些不同的测试数据进行调用:< / p>
$ cat x1.py
import sys, getopt
opts, args = getopt.getopt(sys.argv[1:],'fdmse:d',['files=','data-source=','mode=','start','end'])
print "opts=", opts, "args=", args
$ python x1.py -f=dummy.csv argblah
Traceback (most recent call last):
File "x1.py", line 2, in <module>
opts, args = getopt.getopt(sys.argv[1:],'fdmse:d',['files=','data-source=','mode=','start','end'])
File "/usr/lib/python2.6/getopt.py", line 91, in getopt
opts, args = do_shorts(opts, args[0][1:], shortopts, args[1:])
File "/usr/lib/python2.6/getopt.py", line 191, in do_shorts
if short_has_arg(opt, shortopts):
File "/usr/lib/python2.6/getopt.py", line 207, in short_has_arg
raise GetoptError('option -%s not recognized' % opt, opt)
getopt.GetoptError: option -= not recognized
$ sed 's/fdm/f:dm/' <x1.py >x2.py
$ diff x1.py x2.py
2c2
< opts, args = getopt.getopt(sys.argv[1:],'fdmse:d',['files=','data-source=','mode=','start','end'])
---
> opts, args = getopt.getopt(sys.argv[1:],'f:dmse:d',['files=','data-source=','mode=','start','end'])
$ python x2.py -f=dummy.csv argblah
opts= [('-f', '=dummy.csv')] args= ['argblah']
$ python x1.py -f dummy.csv argblah
opts= [('-f', '')] args= ['dummy.csv', 'argblah']
答案 1 :(得分:1)
通常情况下,我认为逻辑将在try分支
中实现
“通常”?通常意味着什么?
该计划应该做什么?什么例外有意义?该计划为回应例外做了什么。
没有“正常”。不仅仅是正常的赋值语句或正常的函数定义。
您的程序可以实现所需的最终状态。没有“正常”。
答案 2 :(得分:0)
导入并使用argparse而不是getopt。它使用起来更容易,并且几乎只需要从命令行运行它就可以了。
一个例子,
parser = argparse.ArgumentParser(
description='Description of what the module does when run.')
parser.add_argument("-o", "--output", help='Path of log file.')
args = parser.parse_args()
就这么简单。当然,您需要在文件顶部导入argparse才能使其正常工作。