Muat JSON
import json
with open('data.txt') as json_file:
data = json.load(json_file)
ANEREL
import json
with open('data.txt') as json_file:
data = json.load(json_file)
# a Python object (dict):
x = {
"name": "John",
"age": 30,
"city": "New York"
}
# convert into JSON:
y = json.dumps(x)
import json
with open('path_to_file/person.json') as f:
data = json.load(f)
>>> import json
>>> json.loads('["foo", {"bar":["baz", null, 1.0, 2]}]')
['foo', {'bar': ['baz', None, 1.0, 2]}]
>>> json.loads('"\\"foo\\bar"')
'"foo\x08ar'
>>> from io import StringIO
>>> io = StringIO('["streaming API"]')
>>> json.load(io)
['streaming API']
{
"values": [
"init:load"
]
}