pytere
Dummy package content for pytere.
is_odd(x)
Function checking if a number is odd.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
x |
float
|
Number to check. |
required |
Returns:
| Name | Type | Description |
|---|---|---|
bool |
True if the number is odd, False otherwise. |
Source code in pytere/__init__.py
4 5 6 7 8 9 10 11 12 13 | |