新聞中心
python中的dir()函數(shù),可以在我們不了解某一函數(shù)或方法時(shí),幫我們查看這些方法或函數(shù)的用法及屬性。

創(chuàng)新互聯(lián)是專(zhuān)業(yè)的江城網(wǎng)站建設(shè)公司,江城接單;提供成都做網(wǎng)站、網(wǎng)站建設(shè),網(wǎng)頁(yè)設(shè)計(jì),網(wǎng)站設(shè)計(jì),建網(wǎng)站,PHP網(wǎng)站建設(shè)等專(zhuān)業(yè)做網(wǎng)站服務(wù);采用PHP框架,可快速的進(jìn)行江城網(wǎng)站開(kāi)發(fā)網(wǎng)頁(yè)制作和功能擴(kuò)展;專(zhuān)業(yè)做搜索引擎喜愛(ài)的網(wǎng)站,專(zhuān)業(yè)的做網(wǎng)站團(tuán)隊(duì),希望更多企業(yè)前來(lái)合作!
dir()函數(shù)說(shuō)明
不帶參數(shù)時(shí),返回當(dāng)前范圍內(nèi)的變量、方法和定義的類(lèi)型列表;帶參數(shù)時(shí),返回參數(shù)的屬性、方法列表。如果參數(shù)包含方法__dir__(), 該方法將被調(diào)用。如果參數(shù)不包含__dir__(),該方法將限度地收集參數(shù)信息。
參數(shù)object: 對(duì)象、變量、類(lèi)型。
版本:該函數(shù)在python各個(gè)版本中都有,但是每個(gè)版本中顯示的屬性細(xì)節(jié)有所不同。使用時(shí)注意區(qū)別。
例如
>>>import struct >>>dir() # show the names in the module namespace ['__builtins__','__doc__','__name__','struct'] >>>dir(struct) # show the names in the struct module ['Struct','__builtins__','__doc__','__file__','__name__', '__package__','_clearcache','calcsize','error','pack','pack_into', 'unpack','unpack_from'] >>>class Shape(object): def __dir__(self): return ['area','perimeter','location'] >>> s= Shape() >>>dir(s)
代碼實(shí)例
>>>dir() ['__builtins__','__doc__','__name__','__package__'] >>>import struct >>>dir() ['__builtins__','__doc__','__name__','__package__','struct'] >>>dir(struct) ['Struct','__builtins__','__doc__','__file__','__name__','__package__','_clearcache','calcsize','error','pack', 'pack_into','unpack','unpack_from'] >>>class Person(object): ... def __dir__(self): ... return ["name","age","country"] ... >>>dir(Person) ['__class__','__delattr__','__dict__','__dir__','__doc__','__format__','__getattribute__','__hash__','__init__', '__module__','__new__','__reduce__','__reduce_ex__','__repr__','__setattr__','__sizeof__','__str__','__subclasshook__', '__weakref__'] >>> tom= Person() >>>dir(tom) ['age','country','name']
更多學(xué)習(xí)內(nèi)容,請(qǐng)點(diǎn)擊Python學(xué)習(xí)網(wǎng)。
分享名稱(chēng):創(chuàng)新互聯(lián)Python教程:python怎么查看幫助函數(shù)
鏈接分享:http://m.fisionsoft.com.cn/article/cdchdeh.html


咨詢(xún)
建站咨詢(xún)
