Metadata-Version: 2.1
Name: calculator-cwl
Version: 1.1
Summary: A Python Package Which does basic math calculation
Home-page: https://github.com/codewithlaksh/calculator_cwl
Author: CodeWithLaksh
Author-email: dashlakshyaraj2006@gmail.com
Classifier: Programming Language :: Python :: 3
Description-Content-Type: text/markdown

# Calculator CWL

This is a very basic calculator made using python.

### Installation
```bash
pip install calculator-cwl
            OR
pip3 install calculator-cwl
```

### Usage
```python
from calculator_cwl import Calculator

calc = Calculator()
calc.a = 8
calc.b = 9

print("The sum of 8 & 9 is", calc.add())
print("The difference of 8 & 9 is", calc.subtract())
print("The product of 8 & 9 is", calc.multiply())
print("The quotient after division of 8 by 9 is", calc.divide())
```
**You can also take the user's input and perform the options as per the choice**

### Warning!!!

This is only for demonstration purposes.
