- Create a
basic
andadvanced
folder under topic, for examplepython
topic, we will have folder structure below:
├── python
│ ├── README.md
│ ├── advanced
│ │ └── examples
│ │ ├── 01-factorial-calculator.py
│ │ ├── 02-parse-json-file.py
│ │ ├── 03-oop-with-animal.py
│ │ ├── 04-api-call.py
│ │ ├── README.md
│ │ └── sample_files
│ │ └── persional_info.json
│ └── basic
│ └── helloworld.py