Python 的 dir(~)
内置函数返回所提供对象支持的属性和方法的列表。
参数
1.object
| object
| optional
要返回属性和支持的方法的对象。默认为当前本地范围内的名称列表。
返回值
所提供对象支持的属性和方法的列表。
例子
基本用法
要检查字符串对象支持的属性和方法的列表:
s = "SkyTowner"
dir(s)
['__add__',
'__class__',
'__contains__',
'__delattr__',
'__dir__',
'__doc__',
'__eq__',
.
.
.
'title',
'translate',
'upper',
'zfill']
为了便于阅读,我们截断了输出,但您可以清楚地看到字符串对象 "SkyTowner"
支持的属性和方法列表。
模块
列出 pandas
模块的属性和方法:
import pandas as pd
dir(pd)
['BooleanDtype',
'Categorical',
'CategoricalDtype',
'CategoricalIndex',
.
.
.
'tseries',
'unique',
'util',
'value_counts',
'wide_to_long']
相关用法
- Python dir用法及代码示例
- Python dir()用法及代码示例
- Python distributed.protocol.serialize.register_generic用法及代码示例
- Python distributed.get_task_metadata用法及代码示例
- Python distributed.Client.gather用法及代码示例
- Python distributed.recreate_tasks.ReplayTaskClient.recreate_task_locally用法及代码示例
- Python distributed.diagnostics.plugin.SchedulerPlugin用法及代码示例
- Python distributed.Client.ncores用法及代码示例
- Python distributed.Client.retire_workers用法及代码示例
- Python distributed.Client.unregister_worker_plugin用法及代码示例
- Python distributed.fire_and_forget用法及代码示例
- Python distributed.Client.set_metadata用法及代码示例
- Python dictionary cmp()用法及代码示例
- Python distributed.Client.scheduler_info用法及代码示例
- Python distributed.Client.submit用法及代码示例
- Python distributed.Client.compute用法及代码示例
- Python distributed.SpecCluster.scale用法及代码示例
- Python distributed.get_worker用法及代码示例
- Python distributed.SpecCluster.scale_up用法及代码示例
- Python difflib.unified_diff用法及代码示例
- Python distributed.Client.nthreads用法及代码示例
- Python distributed.comm.resolve_address用法及代码示例
- Python distributed.Client.unpublish_dataset用法及代码示例
- Python distributed.get_task_stream用法及代码示例
- Python distributed.Client.start_ipython_scheduler用法及代码示例
注:本文由纯净天空筛选整理自Arthur Yanagisawa大神的英文原创作品 Python | dir method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。