반응형
[Python] 파이썬으로 json 형식 만드는 방법!!
아래 예시 코드 확인 !
import json
from collections import OrderedDict
json_data = OrderedDict()
json_data["name"] = "홍길동"
json_data["age"] = "20"
json_data["subject"] = {'국어': 80, '영어': 90, '수학': 100}
결과값
728x90
반응형
'Coding > Python' 카테고리의 다른 글
[Python & Django] 에러해결 방법 !! MultipleObjectsReturned: get() returned more than one chatbot_log -- it returned 5! (0) | 2023.02.02 |
---|---|
[Python & Django] 장고 timezone 설정하는 방법 !!(한국 시간 설정) (0) | 2023.01.30 |
[Python] 파이썬에서 데이터 타입 체크 및 비교문 적용하는 방법 !! (0) | 2023.01.17 |
[Python & tkinter] tkinter에서 콤보박스 벨류값 가져오기(combobox & value) (0) | 2023.01.06 |
[Python & Django] 파이썬 jinja2 템플릿 자바스크립트 변수에 데이터 담기 (0) | 2023.01.03 |
댓글