溫馨提示×

python中函數(shù)和方法需要熟記嗎

摘星
502
2021-05-28 11:10:50
欄目: 編程語言

python中函數(shù)和方法是不需要熟記的,可以使用dir()和help()函數(shù)來查看函數(shù)和方法的用法。

python中函數(shù)和方法需要熟記嗎

具體分析如下:

1、dir()函數(shù)

在python中dir()函數(shù)在不帶參數(shù)時,可以返回當(dāng)前范圍內(nèi)的變量、方法和定義的類型列表,而dir()函數(shù)帶參數(shù)時,可返回參數(shù)的屬性、方法列表。

語法:

dir([object]) #object指的是對象、變量、類型。

示例:

>>>dir() # 獲得當(dāng)前模塊的屬性列表

['__builtins__', '__doc__', '__name__', '__package__', 'arr', 'myslice']

>>> dir([ ]) # 查看列表的方法

['__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__', '__reduce__', '__reduce_ex__', '__repr__', '__reversed__', '__rmul__', '__setattr__', '__setitem__', '__setslice__', '__sizeof__', '__str__', '__subclasshook__', 'append', 'count', 'extend', 'index', 'insert', 'pop', 'remove', 'reverse', 'sort']

2、help()函數(shù)

在python中help()函數(shù)主要可以用來查看函數(shù)或模塊用途的詳細(xì)說明。

語法:

help([object]) #object指的是對象

示例:

>>>help('sys') # 查看 sys 模塊的幫助

……顯示幫助信息……

>>>help('str') # 查看 str 數(shù)據(jù)類型的幫助

……顯示幫助信息……

>>>a = [1,2,3]

>>>help(a) # 查看列表 list 幫助信息

……顯示幫助信息……

>>>help(a.append) # 顯示list的append方法的幫助

……顯示幫助信息……

0