반응형
pprint의 출력을 사용하여 복잡한 데이터 구조를 표시하고 싶지만 stdout이 아닌 로깅 모듈을 사용하여 출력하고 싶습니다.
ds = [{'hello': 'there'}]
logging.debug( pprint.pprint(ds) ) # outputs as STDOUT
해결 방법
from pprint import pformat
ds = [{'hello': 'there'}]
logging.debug(pformat(ds))
참조 페이지 https://stackoverflow.com/questions/11093236
반응형
'파이썬' 카테고리의 다른 글
파이썬 What are the differences between Pandas and NumPy+SciPy in Python? (0) | 2021.02.14 |
---|---|
파이썬 Python에서 Excel 형식의 날짜를 어떻게 읽습니까? (0) | 2021.02.14 |
파이썬에 정렬 된 목록이 있습니까? (0) | 2021.02.14 |
파이썬 Python 정수 목록 조인 (0) | 2021.02.14 |
파이썬 Cartesian product of x and y array points into single array of 2D points (0) | 2021.02.14 |
댓글