jsonl 파일 읽기 (python) import jsonlines with jsonlines.open(file_path) as f: for line in f.iter(): print(line) import json with open(file_path) as f: df = pd.DataFrame(json.loads(line) for line in f) jsonl to dataframe IT 2022.07.19