英文文件:
len
(s
)return the length (the number of items) of an object. the argument may be a sequence (such as a string, bytes, tuple, list, or range) or a collection (such as a dictionary, set, or frozen set).
說明:
1. 返回物件的長度,引數可以是序列(比如字串、位元組陣列、元組、列表和range物件),或者是集合(比如字典、集合、不可變集合)
>>> len('abcd
') #
字串4
>>> len(bytes('
abcd
','utf-8
')) #
位元組陣列
4>>> len((1,2,3,4)) #元組4
>>> len([1,2,3,4]) #列表4
>>> len(range(1,5)) #
range物件
4>>> len() #字典4
>>> len() #集合4
>>> len(frozenset('
abcd
')) #
不可變集合
4
2. 如果引數為其它型別,則其必須實現__len__方法,並返回整數,否則報錯。
>>> classa:
def__init__
(self,name):
self.name =name
def__len__
(self):
return
len(self.name)
>>> a = a(''
)>>>len(a)
0>>> a = a('
aim'
)>>>len(a)
3>>> class
b:
pass
>>> b =b()
>>>len(b)
traceback (most recent call last):
file
"", line 1, in
len(b)
typeerror: object of type 'b
'has no len()
>>> class
c:
def__len__
(self):
return
'len
'>>> c =c()
>>>len(c)
traceback (most recent call last):
file
"", line 1, in
len(c)
typeerror:
'str
' object cannot be interpreted as an integer
python重寫內建函式 python 內建函式
說明 zip 函式用於將可迭代的物件作為引數,將物件中對應的元素打包成乙個個元組,然後返回由這些元組組成的列表。如果各個迭代器的元素個數不一致,則返回列表長度與最短的物件相同,利用 號操作符,可以將元組解壓為列表。語法 zip iterable1,iterable2,引數 iterable 乙個或多...
python內建函式簡稱 Python內建函式詳解
此文參考python文件,然後結合自己的理解,寫下來,一方面方便自己,讓自己好好學習,順便回憶回憶 另一方面,讓喜歡的盆友也參考一下。經查詢,3.6版本總共有68個內建函式,主要分類如下 數 算 7個 型別轉換 24個 序列操作 8個 物件操作 9個 反射操作 8個 變數操作 2個 互動操作 2個 ...
python內建函式使用 python內建函式使用
eval函式執行python表示式,有返回值 eval 1 2 3 4 5 exec函式執行的是python語句,沒有返回值 exec print 123 將字串型別的 編碼.物件能夠通過exec語句來執行或者eval 進行求值,c只是編譯,不執行 code for i in range 10 pr...