導航:首頁 > 編程語言 > python中dir啥意思

python中dir啥意思

發布時間:2022-09-21 11:58:12

1. python dir 和something 的class有什麼關系

沒有something這個東西。
Python下一切皆對象,每個對象都有多個屬性(attribute),python對屬性有一套統一的管理方案。
__dict__與dir()的區別:
dir()是一個函數,返回的是list;
__dict__是一個字典,鍵為屬性名,值為屬性值;
dir()用來尋找一個對象的所有屬性,包括__dict__中的屬性,__dict__是dir()的子集;
並不是所有對象都擁有__dict__屬性。許多內建類型就沒有__dict__屬性,如list,此時就需要用dir()來列出對象的所有屬性。
__dict__屬性
__dict__是用來存儲對象屬性的一個字典,其鍵為屬性名,值為屬性的值。
#!/usr/bin/python
# -*- coding: utf-8 -*-
class A(object):
class_var = 1
def __init__(self):
self.name = 'xy'
self.age = 2

@property
def num(self):
return self.age + 10

def fun(self):pass
def static_f():pass
def class_f(cls):pass

if __name__ == '__main__':#主程序
a = A()
print a.__dict__ #{'age': 2, 'name': 'xy'} 實例中的__dict__屬性
print A.__dict__
'''
類A的__dict__屬性
{
'__dict__': <attribute '__dict__' of 'A' objects>, #這里如果想深究的話查看參考鏈接5
'__mole__': '__main__', #所處模塊
'num': <property object>, #特性對象
'class_f': <function class_f>, #類方法
'static_f': <function static_f>, #靜態方法
'class_var': 1, 'fun': <function fun >, #類變數
'__weakref__': <attribute '__weakref__' of 'A' objects>,
'__doc__': None, #class說明字元串
'__init__': <function __init__ at 0x0000000003451AC8>}
'''

a.level1 = 3
a.fun = lambda :x
print a.__dict__ #{'level1': 3, 'age': 2, 'name': 'xy','fun': <function <lambda> at 0x>}
print A.__dict__ #與上述結果相同

A.level2 = 4
print a.__dict__ #{'level1': 3, 'age': 2, 'name': 'xy'}
print A.__dict__ #增加了level2屬性

print object.__dict__
'''
{'__setattr__': <slot wrapper '__setattr__' of 'object' objects>,
'__rece_ex__': <method '__rece_ex__' of 'object' objects>,
'__new__': <built-in method __new__ of type object at>,
等.....
'''

從上述代碼可知,
實例的__dict__僅存儲與該實例相關的實例屬性,
正是因為實例的__dict__屬性,每個實例的實例屬性才會互不影響。
類的__dict__存儲所有實例共享的變數和函數(類屬性,方法等),類的__dict__並不包含其父類的屬性。

dir()函數
dir()是Python提供的一個API函數,dir()函數會自動尋找一個對象的所有屬性(包括從父類中繼承的屬性)。
一個實例的__dict__屬性僅僅是那個實例的實例屬性的集合,並不包含該實例的所有有效屬性。所以如果想獲取一個對象所有有效屬性,應使用dir()。
print dir(A)
'''
['__class__', '__delattr__', '__dict__', '__doc__', '__format__', '__getattribute__', '__hash__', '__init__', '__mole__', '__new__', '__rece__', '__rece_ex__', '__repr__', '__setattr__', '__sizeof__', '__str__', '__subclasshook__', '__weakref__', 'age', 'class_f', 'class_var', 'fun', 'level1', 'level2', 'name', 'num', 'static_f']
'''
a_dict = a.__dict__.keys()
A_dict = A.__dict__.keys()
object_dict = object.__dict__.keys()
print a_dict
print A_dict
print object_dict
'''
['fun', 'level1', 'age', 'name']

['__mole__', 'level2', 'num', 'static_f', '__dict__', '__weakref__', '__init__', 'class_f', 'class_var', 'fun', '__doc__']

['__setattr__', '__rece_ex__', '__new__', '__rece__', '__str__', '__format__', '__getattribute__', '__class__', '__delattr__', '__subclasshook__', '__repr__', '__hash__', '__sizeof__', '__doc__', '__init__']
'''

#因為每個類都有一個__doc__屬性,所以需要去重,去重後然後比較
print set(dir(a)) == set(a_dict + A_dict + object_dict) #

結論
dir()函數會自動尋找一個對象的所有屬性,包括__dict__中的屬性。
__dict__是dir()的子集,dir()包含__dict__中的屬性。

2. python dir和vars的區別

dir():默認列印當前模塊的所有屬性,如果傳一個對象參數則列印當前對象的屬性
vars():默認列印當前模塊的所有屬性,如果傳一個對象參數則列印當前對象的屬性

dir()和vars()的區別就是dir()只列印屬性(屬性,屬性......)而vars()則列印屬性與屬性的值(屬性:屬性值......)

3. python語言中的內建函數dir()是幹啥用的啊

dir() 函數

盡管查找和導入模塊相對容易,但要記住每個模塊包含什麼卻不是這么簡單。您並不希望總是必須查看源代碼來找出答案。幸運的是,Python 提供了一種方法,可以使用內置的 dir() 函數來檢查模塊(以及其它對象)的內容。

dir() 函數可能是 Python 自省機制中最著名的部分了。它返回傳遞給它的任何對象的屬性名稱經過排序的列表。如果不指定對象,則 dir() 返回當前作用域中的名稱

4. python dir="J:\\1" 什麼意思

表示一個windows系統的路徑:J盤下一個名字叫「1」的文件或文件夾

5. python的dir和help用法

當你給dir()提供一個模塊名字時,它返回在那個模塊中定義的名字的列表。當沒有為其提供參數時,
它返回當前模塊中定義的名字的列表。
dir()
函數使用舉例:
>>> import sys # 獲得屬性列表,在這里是sys模塊的屬性列表
>>> dir(sys)
['__displayhook__', '__doc__', '__excepthook__', '__name__',
'__package__', '__stderr__', '__stdin__', '__stdout__',
'_clear_type_cache', '_compact_freelists','_current_frames',
'_getframe', 'api_version', 'argv', ...]
如果您需要快速獲取任何的Python函數或語句的信息,那麼您可以使用內置的「help」(幫助)功能。這是非常有用的,尤其是當使用翻譯提示符時,例如,運行『help(print)」——這將顯示print函數的幫助--用於列印東西到屏幕上。
help()函數使用舉例:
>>> help(print)
Help on built-in function print in mole builtins:
print(...)
print(value, ..., sep=' ', end='\n', file=sys.stdout, flush=False)
...

6. Python怎麼查看幫助信息

Python獲取幫助的3種方式

  1. help()

    help函數是Python的一個內置函數。

    函數原型:help([object])。

    可以幫助我們了解該對象的更多信息。

  2. dir()

    dir函數是Python的一個內置函數。

    函數原型:dir([object])

    可以幫助我們獲取該對象的大部分相關屬性。

  3. _doc_

    在Python中有一個奇妙的特性,文檔字元串,又稱為DocStrings。

    用它可以為我們的模塊、類、函數等添加說明性的文字,使程序易讀易懂,更重要的是可以通過Python自帶的標准方法將這些描述性文字信息輸出。

    上面提到的自帶的標准方法就是_doc_。前後各兩個下劃線。

    註:當不是函數、方法、模塊等調用doc時,而是具體對象調用時,會顯示此對象從屬的類型的構造函數的文檔字元串。

7. dir是什麼意思

1:DIR 是directory的縮寫.是目錄的意思.比如新浪的分類目錄 dir.sina.com.cn
2:dir 是DOS操作系統用來查看磁碟中文件的命令dir有很多的參數,

8. python dir和vars的區別

dir():默認列印當前模塊的所有屬性,如果傳一個對象參數則列印當前對象的屬性

vars():默認列印當前模塊的所有屬性,如果傳一個對象參數則列印當前對象的屬性
vars():函數以字典形式返回參數中每個成員的當前值,如果vars函數沒有帶參數,那麼它會返回包含當前局部命名空間中所有成員的當前值的一個字典。

>>> help(vars)
Help on built-in function vars in mole __builtin__:
vars(...)
vars([object]) -> dictionary
Without arguments, equivalent to locals().
With an argument, equivalent to object.__dict__.

dir()和vars()的區別就是:dir()只列印屬性,vars()則列印屬性與屬性的值。

9. python中的「dir」和「help」作用是什麼

dir和help是Python中兩個強大的built-in函數,就像Linux的man一樣,絕對是開發的好幫手。比如查看list的所以屬性:
dir(list)
輸出:
['__add__', '__class__', '__contains__', '__delattr__', '__delitem__', '__delslice__', '__doc__', '__eq__', '__format__', '__ge__', '__getattribute__', '__getitem__', '__getslice__', '__gt__', '__hash__', '__iadd__', '__imul__', '__init__', '__iter__', '__le__', '__len__', '__lt__', '__mul__', '__ne__', '__new__', '__rece__', '__rece_ex__', '__repr__', '__reversed__', '__rmul__', '__setattr__', '__setitem__', '__setslice__', '__sizeof__', '__str__', '__subclasshook__', 'append', 'count', 'extend', 'index', 'insert', 'pop', 'remove', 'reverse', 'sort']
然後查看list的pop方法的作用和用法:
help(list.pop)
輸出:
Help on method_descriptor:
pop(...)
    L.pop([index]) -> item -- remove and return item at index (default last).
    Raises IndexError if list is empty or index is out of range.
(END)

閱讀全文

與python中dir啥意思相關的資料

熱點內容
php備案號 瀏覽:984
php視頻水印 瀏覽:163
怎麼追程序員的女生 瀏覽:485
空調外壓縮機電容 瀏覽:77
怎麼將安卓變成win 瀏覽:457
手機文件管理在哪兒新建文件夾 瀏覽:722
加密ts視頻怎麼合並 瀏覽:774
php如何寫app介面 瀏覽:802
宇宙的琴弦pdf 瀏覽:395
js項目提成計算器程序員 瀏覽:944
pdf光子 瀏覽:834
自拍軟體文件夾名稱大全 瀏覽:328
程序員留學移民 瀏覽:52
梁中間部位箍筋加密區 瀏覽:119
頻譜分析pdf 瀏覽:752
樂2怎麼升級安卓70 瀏覽:174
java中獲取日期 瀏覽:508
單片機74hc245 瀏覽:274
美國歷史上的總統pdf 瀏覽:753
程序員脫單實驗室靠不靠譜 瀏覽:460