any 28iterable 29

Solutions on MaxInterview for any 28iterable 29 by the best coders in the world

showing results for - "any 28iterable 29"
Colt
14 Jan 2020
1def any(iterable):
2    for element in iterable:
3        if element:
4            return True
5    return False
6
similar questions
queries leading to this page
any 28iterable 29