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

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 oddness.