當前位置:首頁 » 編程語言 » dirpython

dirpython

發布時間: 2022-02-15 16:50:35

A. python:為什麼給對象調用dir()函數,顯示的列表中沒有__del__()方法呢

因為本來就沒有。
原生類都沒有。

B. DIR為什麼不顯示所有的Python對象屬性

>>> class Person():... a = 1... b = 1...>>> p = Person()>>> dir(p)['__doc__', '__mole__', 'a', 'b']>>> print p.a1dir()可以查看對象包含哪些屬性和方法 如果你要看對應的值,就print object.xxx

C. 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)

D. python dircache模塊有什麼作用

dircache
Deprecated since version 2.6: The dircache mole has been removed in Python 3.

因為這樣所以新版本才不支持了?

差別應該是dircache 使用了緩存(cache),os是直接讀取硬碟的。還有一些細節。。。。。好像沒太大用途嘛。

E. 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)
...

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

dir(...)
dir([object]) -> list of strings

Return an alphabetized list of names comprising (some of) the attributes
of the given object, and of attributes reachable from it:

No argument: the names in the current scope.
Mole object: the mole attributes.
Type or class object: its attributes, and recursively the attributes of
its bases.
Otherwise: its attributes, its class's attributes, and recursively the
attributes of its class's base classes.

G. 如何在python函數內部獲得全局的dir

查官方文檔呀
dir方法是針對類的,類寫了__dir__()才能通過dir獲取,python大部分數據類型都是類所以能調用,全局似乎不是。

H. python dir和vars的區別

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

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

I. 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__中的屬性。

J. java中有沒有類似python的dir()和help()

ctrl+o eclipse的快捷鍵

熱點內容
我的世界tim伺服器ip 發布:2025-01-10 08:55:40 瀏覽:343
為什麼gg都是伺服器無響應 發布:2025-01-10 08:53:27 瀏覽:587
qq消息記錄加密 發布:2025-01-10 08:52:46 瀏覽:118
掃描wifi密碼在哪裡找 發布:2025-01-10 08:52:40 瀏覽:871
股票c語言 發布:2025-01-10 08:52:31 瀏覽:78
資料庫監測 發布:2025-01-10 08:51:57 瀏覽:204
solidworks緩存 發布:2025-01-10 08:51:56 瀏覽:712
sql語言有什麼 發布:2025-01-10 08:51:48 瀏覽:976
php開發實例教程 發布:2025-01-10 08:49:29 瀏覽:497
android顯示隱藏控制項 發布:2025-01-10 08:49:23 瀏覽:742