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?
- Host: GitHub
- URL: https://github.com/tomhea/odd
- Owner: tomhea
- License: bsd-2-clause
- Created: 2023-12-03T22:32:55.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2023-12-03T22:35:11.000Z (over 2 years ago)
- Last Synced: 2025-03-30T06:31:44.733Z (about 1 year ago)
- Language: Python
- Size: 4.88 KB
- Stars: 1
- Watchers: 2
- Forks: 2
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE
- Code of conduct: CODE_OF_CONDUCT.md
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
```