//example.json
{
"string": "hello world",
"number": 52,
"array": [1, 2, 3, 4, 5],
"object": { "key": "value", "key2": "value2" },
"boolean": true
}
이라는 json 파일이 있다고 가정하고 Python으로 json 파일을 읽어서 사용하는 방법.
import json
with open('example.json') as f:
data = json.load(f)
string = data['string']
number = data['number']
array = data['array']
object = data['object']
boolean = data['boolean']
print(string)
print(number)
print(array)
print(object)
print(boolean)
json 모듈을 import 하고
with open으로 json파일을 오픈후 json.load로 데이터를 읽어와서 파싱. 데이터를 변수에 저장후 출력
'프로그래밍 > python' 카테고리의 다른 글
[파이썬] random 모듈 사용 방법 (1) | 2024.12.27 |
---|---|
[OpenCV] OpenCV를 활용한 퍼스펙티브 변환 (Perspective Transformation) (0) | 2024.09.05 |
[PySide6] styleSheet 사용방법 - QLabel (1) (0) | 2024.06.03 |
[PySide6] styleSheet 사용방법 - QPushButton (2) (0) | 2023.12.21 |
[PySide6] styleSheet 사용방법 - QPushButton (1) (0) | 2023.12.19 |
댓글