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 import json
data = ''' data = '''
[ [
{ 'id' : '001', { "id" : "001",
'x' : '2', "x" : "2",
'name' : 'Quincy' "name" : "Quincy"
} , } ,
{ 'id' : '009', { "id" : "009",
'x' : '7', "x" : "7",
'name' : 'Mrugesh' "name" : "Mrugesh"
} }
] ]
''' '''