fix: updated JSON string in snippet for Python Web Services (#40742)

This commit is contained in:
Brandon Dusch
2021-01-21 00:09:16 -05:00
committed by GitHub
parent 0b01b73e1f
commit 570d9ad906

View File

@ -16,13 +16,13 @@ What will the following code print?:
import json
data = '''
[
{ 'id' : '001',
'x' : '2',
'name' : 'Quincy'
{ "id" : "001",
"x" : "2",
"name" : "Quincy"
} ,
{ 'id' : '009',
'x' : '7',
'name' : 'Mrugesh'
{ "id" : "009",
"x" : "7",
"name" : "Mrugesh"
}
]
'''