英文文件:
any
(iterable#)
Return True
if any element of the iterable is true. If the iterable is empty, return False
. Equivalent to:
def any(iterable): for element in iterable: if element: return True return False
說明:
1. 接受一個可迭代器物件為參數,當參數為空或不為可迭代器物件是報錯
>>> any(2) #传入数值报错 Traceback (most recent call last): File "<pyshell#0>", line 1, in <module> any(2) TypeError: 'int' object is not iterable
2. 若可迭代物件中其中一個元素的邏輯值為True時,傳回True,全部值皆為False時傳回False
>>> any([0,1,2]) #列表元素有一个为True,则返回True True >>> any([0,0]) #列表元素全部为False,则返回False False
3. 若可迭代物件為空(元素個數為0),傳回False
>>> any([]) #空列表 False >>> any({}) #空字典 False >>>
以上是Python內建any函數詳細介紹的詳細內容。更多資訊請關注PHP中文網其他相關文章!