qobjects = [
{
question: "Consider this syntax:a = {'name' : 'John', 'age' : '20'}
b = {'name' : 'May', 'age' : '23'}
customers = {'c1' : a, 'c2' : b}
what will be a correct syntax for printing the name 'May'?",
options: [
"print(customers['c2']['name'])",
"print(customers.c2.b['name'])",
"print(customers.c2.name)"
],
correct: 0
},
{
fillintheblanks: "exercise_dictionaries_nested1.htm"
},
{
question: "True or False. A dictionary can only have one level of nested dictionaries.",
options: [
"True",
"False"
],
correct: 1
}
]