The scope of this project is to use both Python native programming functionalities, and the statistics module to calculate count, sum, mean, median, and mode. Both approaches are expected to return the same results.
There is one data-set avalilabe for this project and it is a list of 1000 numbers created with list comprehension.
Python 3 is the environment utilized with the addition of the following libraries:
- statistics (+ dependencies)
import statistics
data = [i for i in range(1,2000)]
- central-native.py: python file for creating/testing the core logic implemented in this project.
- central-with-statistics.py: python for creating/testing the core logic implemented in this project.