Metadata-Version: 2.1
Name: isCubed
Version: 0.1
Summary: Check if number is perfect cube
Home-page: https://github.com/MiTo0o
Author: MiTo
Author-email: derzanchiang1800@gmail.com
License: MIT
Platform: UNKNOWN
Description-Content-Type: text/markdown


# isCubed
________

Check if a number is a perfect cube

## install
    pip install isCubed

If that doesnt work try:

    pip3 install isCubed

## usage

```py
from isCubed import isCubed

print(isCubed(5))
#prints False

print(isCubed(27))
#prints True

```


