🌈 搜索
📅  最后修改于: 2022-03-11 14:46:45.686000             🧑  作者: Mango
def any(iterable): for element in iterable: if element: return True return False