Metadata-Version: 2.1
Name: hbrootcalculator
Version: 5
Summary: A VERY BASIC ROOT CALCULATOR BY HB
Home-page: https://github.com/hbbots/hb-agecalculator
Author: HB
Author-email: amalmohan902@gmail.com
License: MIT
Keywords: rootcalculaor
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Education
Classifier: Operating System :: Microsoft :: Windows :: Windows 10
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Description-Content-Type: text/markdown

## HB ROOT CALCULATOR 

## THIS IS A SIMPLE ROOT CALCULTOR MODULE YOU CAN EASILY USE IT


## Installation

```
pip install hbrootcalculator
```

## Usage

```py
import hbrootcalculator
number=int(input("HLO ENTER ANY NUMBER: "))
root=int(input("CUBE OR SQUARE ROOT : "))

if root=="2":
    result=(number**(1/2))
else:
    result=(number**(root))

print("RESULT =",result )

```



