Python에서 JSON을 예쁘게 인쇄
JSON 파일을 예쁘게 인쇄하면 독자가 읽을 수 있도록 내용을 들여쓰기하고 서식을 지정하여 가독성이 향상됩니다. Python에서는 json.dump() 또는 json.dumps() 함수를 사용하여 이를 수행할 수 있습니다.
json.dump() 및 json.loads() 사용
JSON 데이터가 포함된 문자열을 예쁘게 인쇄하려면:
import json # JSON string your_json = '["foo", {"bar": ["baz", null, 1.0, 2]}]' # Parse the JSON string parsed = json.loads(your_json) # Pretty print the JSON object with 4 spaces of indentation print(json.dumps(parsed, indent=4))
json.load() 사용 및 json.dumps() 파일 포함:
# Open a file containing JSON data with open('filename.txt', 'r') as handle: # Parse the JSON file parsed = json.load(handle) # Pretty print the JSON object with 2 spaces of indentation print(json.dumps(parsed, indent=2))
위 내용은 Python에서 JSON 데이터를 어떻게 예쁘게 인쇄할 수 있나요?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!