fix: updated JSON string in snippet for Python Web Services (#40742)
This commit is contained in:
@ -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"
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
'''
|
'''
|
||||||
|
Reference in New Issue
Block a user