calc.even
Determine whether an integer is even.
Example
#calc.even(4) \
#calc.even(5) \
#range(10).filter(calc.even)

ParametersParameters are the inputs to a function. They are specified in parentheses after the function name.
Parameters are the inputs to a function. They are specified in parentheses after the function name.
value
The number to check for evenness.