Python - Structured Data Files
Given a JSON string representing a list of dictionaries, how can you deserialize it and extract the value of key 'id' from the first dictionary?
json_str = '[{"id": 101, "name": "A"}, {"id": 102, "name": "B"}]'