0

正如我从 python 文档 ( http://docs.python.org/3.3/library/optparse.html ) 中收集的那样,在表达式中

(options, args) = parser.parse_args()

options是一个对象,其属性由parser设置,它是optparserOptionParser的一个实例。

options所属的类的名称是什么?

4

2 回答 2

4
>>> import optparse
>>> parser = optparse.OptionParser()
>>> (options, args) = parser.parse_args()
>>> type(options)
<class 'optparse.Values'>
>>> help(optparse.Values)
Help on class Values in module optparse:

class Values(builtins.object)
 |  Methods defined here:
 |  
 |  __eq__(self, other)
 |  
 |  __init__(self, defaults=None)
 |  
 |  __repr__ = _repr(self)
 |  
 |  __str__(self)
 |  
 |  ensure_value(self, attr, value)
 |  
 |  read_file(self, filename, mode='careful')
 |  
 |  read_module(self, modname, mode='careful')
 |  
 |  ----------------------------------------------------------------------
 |  Data descriptors defined here:
 |  
 |  __dict__
 |      dictionary for instance variables (if defined)
 |  
 |  __weakref__
 |      list of weak references to the object (if defined)
 |  
 |  ----------------------------------------------------------------------
 |  Data and other attributes defined here:
 |  
 |  __hash__ = None
于 2013-05-11T10:44:00.860 回答
2

从您链接的文档中:

values 是optparse_parser.Values类的一个实例

type()您可以通过调用返回值来进一步确认这一点。

注意:这发生在 Python 3 中。一个快速测试表明,在 Python 2 中你得到了一个老式的类(type instance)。

于 2013-05-11T10:59:25.287 回答