pythondir
① 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__中的屬性。
② python:為什麼給對象調用dir()函數,顯示的列表中沒有__del__()方法呢
因為本來就沒有。
原生類都沒有。
③ DIR為什麼不顯示所有的Python對象屬性
>>> class Person():... a = 1... b = 1...>>> p = Person()>>> dir(p)['__doc__', '__mole__', 'a', 'b']>>> print p.a1dir()可以查看對象包含哪些屬性和方法 如果你要看對應的值,就print object.xxx
④ 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)
...
⑤ java中有沒有類似python的dir()和help()
ctrl+o eclipse的快捷鍵
⑥ 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.
⑦ python--怎麼查看模塊OS里listdir()函數的源代碼,也就是怎麼定義istdir()的代碼
去 python 官網下載 Gzipped source tar ball, 解壓縮後, 你會發現 Lib/os.py 文件這行代碼
from posix import *
可是沒有文件叫 posix.py 啊, 到底在那 ? 其實 posix mole 是 builtin 的其中一分子,如下所示範:
>>> import sys
>>> print sys.builtin_mole_names
(*__builtin__*, *__main__*, *_ast*, *_codecs*, *_sre*, *_symtable*, *_warnings*, *_weakref*, *errno*, *exceptions*, *gc*, *imp*, *marshal*, *posix*, *pwd*, *signal*, *sys*, *thread*, *zipimport*)
>>>
所以要去 Moles 目錄查找 c 代碼, 你會看見 posixmole.c, 打開它看見這行代碼:
{"listdir", posix_listdir, METH_VARARGS, posix_listdir__doc__},
再尋找上面所得到的 posix_listdir method, 可以找到 listdir 源代碼:
static PyObject *
posix_listdir(PyObject *self, PyObject *args)
{
/* XXX Should redo this putting the (now four) versions of opendir
in separate files instead of having them all here... */
#if defined(MS_WINDOWS) && !defined(HAVE_OPENDIR)
PyObject *d, *v;
HANDLE hFindFile;
BOOL result;
.... 省略
來自puthon吧
⑧ 問一下老師 python3.7沒有file類,怎麼dir()他的函數 還有為什麼$ cat報錯
在 Python 中,有大量的內置模塊,模塊中的定義(例如:變數、函數、類)眾多,不可能全部都記住,這時 dir() 函數就非常有用了。
dir() 是一個內置函數,用於列出對象的所有屬性及方法。在 Python 中,一切皆對象,模塊也不例外,所以模塊也可以使用 dir()。除了常用定義外,其它的不需要全部記住它,交給 dir() 就好了。
⑨ 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和vars的區別
dir():默認列印當前模塊的所有屬性,如果傳一個對象參數則列印當前對象的屬性
vars():默認列印當前模塊的所有屬性,如果傳一個對象參數則列印當前對象的屬性
dir()和vars()的區別就是dir()只列印屬性(屬性,屬性......)而vars()則列印屬性與屬性的值(屬性:屬性值......)