Python - Modules and Code Organization
Given this package structure:
Assuming
analytics/ __init__.py stats.py report.pyWhat will be the output of this code?
from analytics import stats print(stats.mean([1, 2, 3]))
Assuming
stats.py has a function mean that returns the average.