참조: http://docs.python-guide.org/en/latest/scenarios/json/
1 2 3 4 5 6 7 8 9 10 11 12 13 14 | import json # json string to dict obj json_string = '{"first_name": "Guido", "last_name":"Rossum"}' parsed_json = json.loads(json_string) print(parsed_json['first_name']) # dict obj to json string d = { 'first_name': 'Guido', 'second_name': 'Rossum', 'titles': ['BDFL', 'Developer'], } print(json.dumps(d)) | cs |
'Language > python' 카테고리의 다른 글
[python] get html (urlopen) best way (0) | 2017.11.26 |
---|---|
[python] str to bytes (0) | 2017.11.25 |
[python] Windows python3, jupyter 설치하기 (0) | 2017.11.25 |
[python] 장점, 써야하는 이유 / 프로그래밍언어 비교 (0) | 2017.11.25 |
[python] simple echo server&client source example (0) | 2015.12.02 |
WRITTEN BY
- hojongs
블로그 옮겼습니다 https://hojongs.github.io/