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" } ] '''