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)
>>> import json
>>> data = {'item': 'Beer', 'cost':'£4.00'}
>>> jstr = json.dumps(data, indent=4)
>>> print(jstr)
{
"item": "Beer",
"cost": "\u00a34.00"
}
import json
with open('path_to_file/person.json') as f:
data = json.load(f)
{
"values": [
"init:load"
]
}