2013年5月10日 星期五

Python: dir([object]) 列出object的所有"屬性"與"方法",並以"串列"的方式回傳



dir([object])為python的內建函式,列出object的所有"屬性"與"方法",並以"串列"的方式回傳。


>>> from fabric.api import run
>>> dir(run)
['__call__', '__class__', '__closure__', '__code__', '__defaults__', '__delattr__', '__dict__', '__doc__', '__format__', '__get__', '__getattribute__', '__globals__', '__hash__', '__init__', '__module__', '__name__', '__new__', '__reduce__', '__reduce_ex__', '__repr__', '__setattr__', '__sizeof__', '__str__', '__subclasshook__', 'func_closure', 'func_code', 'func_defaults', 'func_dict', 'func_doc', 'func_globals', 'func_name', 'undecorated']


Reference:

沒有留言:

張貼留言