Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR JAVASCRIPT

python json

import json

# some JSON:
x = '{ "name":"John", "age":30, "city":"New York"}'

# parse x:
y = json.loads(x)

# the result is a Python dictionary:
print(y["age"])
Source by www.geeksforgeeks.org #
 
PREVIOUS NEXT
Tagged: #python #json
ADD COMMENT
Topic
Name
5+3 =