Metadata-Version: 2.1
Name: isodd-lucasedng
Version: 0.0.2
Summary: A smart way to find out if a number is odd
Home-page: UNKNOWN
Author: lucasedng (Lucas Gonçalves)
Author-email: lucasedng@gmail.com
License: UNKNOWN
Keywords: python,number,odd
Platform: UNKNOWN
Classifier: Development Status :: 1 - Planning
Classifier: Intended Audience :: Developers
Classifier: Programming Language :: Python :: 3
Classifier: Operating System :: Unix
Classifier: Operating System :: MacOS :: MacOS X
Classifier: Operating System :: Microsoft :: Windows
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: iseven-lucasedng


# is_odd - lucasedng

Under construction! Not ready for use yet! Currently experimenting and planning!

Developed by Lucas Gonçalves (c) 2024

## Examples of How To Use

Using is_odd method

```python
from is_odd import is_odd

# Check if a number is odd
number = 4
if is_odd(number):
    print(f"{number} is odd.")
else:
    print(f"{number} is not odd.")
```
This simple library allows you to easily check if a number is odd. The is_odd method takes an integer as input and returns `True` if the number is odd, and `False` otherwise.

Check out more on my GitHub or follow me for updates.


