- Make a Script that take in a folder path, containing python files
- It looks into each file and classifies function and class into 1st, 2nd, … order function/classes.
A 1st order function is a function with only builitin utilization A 2nd order function is a function that incorporates one or more 1st order function in itselfs. A 3rd order function …
Objective:
When reading code i might want to start from smaller function.