반응형
파이썬 딕셔너리 json으로 저장하기 dict to json
import json
data = {
"name": "John",
"age": 30,
"city": "New York"
}
with open('data.json', 'w') as f:
json.dump(data, f)
반응형
'python' 카테고리의 다른 글
pillow image rotate 검정색 공백 없이 파이썬 이미지 회전 (0) | 2023.04.15 |
---|---|
pytorch 기초 사용법(텐서 생성, 텐서 연산, 데이터셋 및 데이터 로더) (0) | 2023.04.15 |
linear layer 방정식과 pytorch 예시 선형레이어 (deep learning) (0) | 2023.04.13 |
파이토치 최대값, 최소값 필터링 clamp() (2) | 2023.04.09 |
파이썬 함수 document 작성법 `__doc__` (0) | 2023.04.09 |
댓글