python中any函數(shù)的用法分析

小新
453
2021-05-20 17:51:33
欄目: 編程語言

python中any函數(shù)的用法:any函數(shù)主要是用來判斷指定的可迭代參數(shù)iterable是否全部為False,則返回False,如果有一個(gè)為True,則返回True,元素除了是0、空、False外都算True;any函數(shù)語法格式為:“any(iterable)”,這里iterable指的是元組或列表。

python中any函數(shù)的用法分析

具體實(shí)例分析:

>>>any(['a', 'b', 'c', 'd']) # 列表list,元素都不為空或0

True

>>> any(['a', 'b', '', 'd']) # 列表list,存在一個(gè)為空的元素

True

>>> any([0, '', False]) # 列表list,元素全為0,'',false

False

>>> any(('a', 'b', 'c', 'd')) # 元組tuple,元素都不為空或0

True

>>> any(('a', 'b', '', 'd')) # 元組tuple,存在一個(gè)為空的元素

True

>>> any((0, '', False)) # 元組tuple,元素全為0,'',false

False

>>> any([]) # 空列表

False

>>> any(()) # 空元組

False

注意事項(xiàng):返回值如果都為空、0、false,則返回false,如果不都為空、0、false,則返回true。

0