Python之OptionParser模块

  • Post author:
  • Post category:python


parse_args() 方法提供了一个 default 参数用于设置默认值。如:

  1. parser.add_option(“-f”,“–file”, action=“store”, dest=“filename”, default=“foo.txt”)
  2. parser.add_option(“-v”, action=“store_true”, dest=“verbose”, default=True)

https://www.lmlphp.com/user/16709/article/item/583213/

http://www.cppcns.com/jiaoben/python/458775.html



版权声明:本文为shine_00原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接和本声明。