Python - Modules and Code Organization
Consider this package structure:
Assuming
data/ __init__.py loader.py processor.pyWhat will be the output of this code?
from data.loader import load_data print(load_data())
Assuming
load_data returns the string 'Data loaded'.