본문 바로가기
Machine Learning

JSON 형식 파일 읽기 / json.load()

by ISLA! 2023. 3. 6.

JSON 라이브러리 불러오기

import json

**라이브러리가 불러와지지 않으면 터미널에 pip install json 입력

json.load() 함수

▶︎ json.load() 함수로 문자열 데이터를 사전처럼 다룰 수 있음

    문자열 데이터 예 : '{"key" : "contents", "key2" : :contents2".....}'

 

▶︎ 아래 예제에서 json_data[' key 값'] 입력시 value 값 반환 

import json

with open('master/data/real_name.json', 'r', encoding='utf-8-sig') as json_file:
    json_data = json.load(json_file)

 

[참고]

▶︎ json 파일을 불러올 때 with 사용하는 방법 (위 예시 참고)

    with open ( 경로, 읽기/쓰기 방식, 인코딩) as '파일이름 지정' :

    변수명 = json.load('지정한 파일이름')

728x90