如果我想将的结果(argparse.ArgumentParser()
即Namespace
对象)与需要字典或类映射对象的方法一起使用(请参阅collections.Mapping),那么正确的方法是什么?
C:\>python
Python 2.7.3 (default, Apr 10 2012, 23:31:26) [MSC v.1500 32 bit (Intel)] on win
32
Type "help", "copyright", "credits" or "license" for more information.
>>> import argparse
>>> args = argparse.Namespace()
>>> args.foo = 1
>>> args.bar = [1,2,3]
>>> args.baz = 'yippee'
>>> args['baz']
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
TypeError: 'Namespace' object has no attribute '__getitem__'
>>> dir(args)
['__class__', '__contains__', '__delattr__', '__dict__', '__doc__', '__eq__', '_
_format__', '__getattribute__', '__hash__', '__init__', '__module__', '__ne__',
'__new__', '__reduce__', '__reduce_ex__', '__repr__', '__setattr__', '__sizeof__
', '__str__', '__subclasshook__', '__weakref__', '_get_args', '_get_kwargs', 'ba
r', 'baz', 'foo']
“进入”对象并使用其__dict__
属性是否合适?
我认为答案是否定的:__dict__
闻起来像实现的约定,而不是接口的含义__getattribute__
,__setattr__
或者说__contains__
是。
vars()
(是locals()
或globals()
)的行为,但我不确定。