| Exam 200-901 | Question id=6284 | Application Deployment and Security |
json_string = """
{
"researcher": {
"name": "Ford Perfect",
"species": "Betelgeusian",
"relatives": [
{
"name": "Zaphod Beeblebrox",
"species": "Betelgeusian"
}
]
}
}
"""
my_json = json. loads (json_string)
Which Python data structure does my_json contain?
| A. |
map | |
| B. |
list | |
| C. |
json | |
| D. |
dict |