Metadata-Version: 2.1
Name: numbers_product-sharanya
Version: 0.0.1
Summary: product of digits in a number
Author: Sharanya Ganesh Prasad
Description-Content-Type: text/markdown

numbers_product-sharanya is a package used to get the product of the digits in a given number

# Installation
```bash
pip install numbers_product-sharanya
```

# Usage

```python
from numbers_product-sharanya import getProduct
print(getProduct(234))
```

Output:
```
24
