Actually Parse the JSON
Use json.load() instead of reading a config file as raw text.
A intermediate Linux challenge worth 10 points. Solve it hands-on in a real Linux environment in your browser - no local setup, no fake shells.
The Challenge
Scenario: /home/labuser/lab/parse.py should read config.json and summarize it, but it reads the file as plain text instead of parsing it, so indexing into it as a dict fails.
Task: Fix parse.py to use json.load() so summary.txt reads exactly service=billing-api db_host=db.internal feature_count=3. Run check when ready.