user_summary(raw) that parses a JSON string like '{"name": "Asha", "age": 29}' with json.loads and returns 'Asha (29)'. Missing keys should fall back to 'unknown' and 0 via .get.user_summary('{"name": "Asha", "age": 29}')'Asha (29)'
The string became a dict, then formatted.
loads returns native Python objects.
f-string the two fields.