From 570d9ad906b15a40ca915debf3cfd965d3287318 Mon Sep 17 00:00:00 2001 From: Brandon Dusch Date: Thu, 21 Jan 2021 00:09:16 -0500 Subject: [PATCH] fix: updated JSON string in snippet for Python Web Services (#40742) --- .../python-for-everybody/web-services-json.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/curriculum/challenges/english/07-scientific-computing-with-python/python-for-everybody/web-services-json.md b/curriculum/challenges/english/07-scientific-computing-with-python/python-for-everybody/web-services-json.md index bfc83359d4..336373054c 100644 --- a/curriculum/challenges/english/07-scientific-computing-with-python/python-for-everybody/web-services-json.md +++ b/curriculum/challenges/english/07-scientific-computing-with-python/python-for-everybody/web-services-json.md @@ -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" } ] '''