หากฉันต้องการใช้ผลลัพธ์ของargparse.ArgumentParser()
ซึ่งเป็นNamespace
วัตถุด้วยวิธีการที่คาดว่าวัตถุหรือคล้ายการทำแผนที่ (ดูคอลเลกชันการทำแผนที่) วิธีที่เหมาะสมในการทำคืออะไร?
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()
) แต่ฉันไม่แน่ใจจริงๆ