Simple Example
This example demonstrates how to use the fancy_calcy package for basic calculations.
Please see the details below:
Various mathematical operations are performed using the fancy_calcy package.
1# this is just a simple example of how to use the library
2
3from fancy_calcy.basics import BasicOperations
4
5bo = BasicOperations(10, 3)
6
7print(bo.add())
8
9print(bo.subtract())
10
11print(bo.multiply())
12
13print(bo.divide())