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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。