Python - Structured Data Files
Identify the error in this code snippet:
import json
py_obj = {'name': 'Bob', 'age': 25}
json_str = json.dumps(py_obj)
py_obj2 = json.loads(json_str)
print(py_obj2['agee'])