Skip to content

Instantly share code, notes, and snippets.

@ycui1
Created March 29, 2022 20:55
Show Gist options
  • Save ycui1/3080316f75bec0c83da90e286a498ccd to your computer and use it in GitHub Desktop.
Save ycui1/3080316f75bec0c83da90e286a498ccd to your computer and use it in GitHub Desktop.
import json
employee_data = json.loads(employee_json_data)
print(employee_data)
# {'employee0': {'firstName': 'John', 'lastName': 'Smith', 'age': 35, 'city': 'San Francisco'}, 'employee1': {'firstName': 'Zoe', 'lastName': 'Thompson', 'age': 32, 'city': 'Los Angeles'}}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment