# import_local_scripts.py # Refer the 'useful_functions.py file for functions being imported import useful_functions as uf scores = [88, 92, 79, 93, 85] mean = uf.mean(scores) curved = uf.add_five(scores) mean_c = uf.mean(curved) print("Scores:", scores) print("Original Mean:", mean, " New Mean:", mean_c) print(__name__) print(uf.__name__)