MCPcopy Create free account
hub / github.com/ZiniuLu/Python-100-Days / even

Function even

Day66-75/code/generator01.py:8–11  ·  view source on GitHub ↗
(gen)

Source from the content-addressed store, hash-verified

6
7
8def even(gen):
9 for val in gen:
10 if val % 2 == 0:
11 yield val
12
13
14def main():

Callers 1

mainFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected