This package was created as a learning exercise for creating packages in Python through the Digital Innovation One Bootcamp: "Cognizant Cloud Data Engineer #2".
The exercise module was taught by Karina Kato under the name "Uncomplicating the creation of image processing packages in Python".
The package averag_mult_three is used to: - Calculate the average of three numbers - Calculate the multiplication of three numbers
Use the package manager pip to install averag_mult_three
pip install averag_mult_threeTo calculate the average of three numbers:
from averag_mult_three.average_three_numb import average_calculation
average_calculation.calc_average_three()To calculate the multiplication of three numbers:
from averag_mult_three.multiplication_three_numb import multiplication_calculation
multiplication_calculation.calc_multipl_three()Dimitri Marinho