Python - Structured Data Files
What will be the output of the following code?
import json
py_obj = {'x': 10, 'y': 20}
json_str = json.dumps(py_obj)
print(type(json_str))