An open API service indexing awesome lists of open source software.

https://github.com/tomhea/odd

Is this number odd?
https://github.com/tomhea/odd

Last synced: about 1 year ago
JSON representation

Is this number odd?

Awesome Lists containing this project

README

          

# odd

Test if a number is odd.

```python
>> from odd import is_odd
>> is_odd(9)
True
>> is_odd(10)
False
```

### How to Download

```
pip install odd
```