python中options类_Python OptionParser允许选择类型选项的多个参数
我在OptionParser中有一个选项,如下所示:foo_choices = ['foo', 'bar', 'mac', 'win']parser.add_option('-t', '--test',type='choice',action='store',dest='test',choices=foo_choices,default='foo')但是,我希望该选项能够接受多个选项(可以用逗号分...