"파이썬 json 파일 읽기"의 두 판 사이의 차이

2번째 줄: 2번째 줄:
;파이썬 json 파일 읽기
;파이썬 json 파일 읽기


<syntaxhighlight lang='console'>
<syntaxhighlight lang='python'>
import json
import json
f = open('data.json',)
f = open('data.json',)
9번째 줄: 9번째 줄:
f.close()
f.close()
</syntaxhighlight>
</syntaxhighlight>
==같이 보기==
* [[Python 웹에서 JSON 가져오기]]


==참고==
==참고==
* https://www.geeksforgeeks.org/read-json-file-using-python
* https://www.geeksforgeeks.org/read-json-file-using-python
[[분류:Python JSON]]
[[분류:Python JSON]]

2021년 7월 12일 (월) 14:24 판

1 개요

파이썬 json 파일 읽기
import json
f = open('data.json',)
data = json.load(f)
print(data)
f.close()

2 같이 보기

3 참고

문서 댓글 ({{ doc_comments.length }})
{{ comment.name }} {{ comment.created | snstime }}