파이썬 pprint()

Jmnote (토론 | 기여)님의 2019년 12월 24일 (화) 13:38 판 (새 문서: ==개요== ;Python pprint() ;파이썬 pprint() <source lang='python'> from pprint import pprint dict = { } dict['ID'] = 102 dict['Name'] = 'YONEZAWA Akinori' dict['Address'] = 'Naha...)
(차이) ← 이전 판 | 최신판 (차이) | 다음 판 → (차이)

1 개요

Python pprint()
파이썬 pprint()
from pprint import pprint
dict = { }
dict['ID'] = 102
dict['Name'] = 'YONEZAWA Akinori'
dict['Address'] = 'Naha, Okinawa'
pprint( dict )
# {'Address': 'Naha, Okinawa', 'ID': 102, 'Name': 'YONEZAWA Akinori'}

2 같이 보기

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