📅  最后修改于: 2023-12-03 14:45:55.934000             🧑  作者: Mango
any()
函数是Python中的一个内置函数,它用于判断可迭代对象中是否有任意一个元素为真。可迭代对象可以是列表、元组、集合、字典等。
any(iterable)
iterable
: 可迭代对象,例如列表、元组、集合、字典等。any()
函数返回一个布尔值:
True
。False
。numbers = [1, 2, 3, 0, 5]
result = any(numbers)
print(result) # 输出: True
fruits = {"apple", "banana", "cherry", ""}
result = any(fruits)
print(result) # 输出: True
persons = ("Alice", "Bob", "")
result = any(persons)
print(result) # 输出: True
scores = {"Alice": 80, "Bob": 90, "Charlie": 70}
result = any(scores)
print(result) # 输出: True
empty_list = []
result = any(empty_list)
print(result) # 输出: False
any()
函数用于判断可迭代对象中是否有任意一个元素为真。True
;当可迭代对象中所有元素都为假时,返回False
。any()
函数适用于对列表、元组、集合、字典等数据结构进行判断。