-
11. 표준 라이브러리 -2
11.1. 출력 포매팅 import reprlib # reprlib: 결과 문자열의 크기에 제한이 있는 객체 표현을 생성하는 수단 제공 print(reprlib.repr(set('supercalifragilisticexpialidocius'))) # 같은 이름의 내장 함수에 의해 반환된 것과 비슷한 문자열을 반환함 # 글자크기 줄여줌 import pprint # pprint : 데이터를 보기 좋게 출력(pretty print) t = [[['black','cyan'],'white',['green','red']],[['magenta','yellow'],'blue']] pprint.pprint(t,width=30) [[['black', 'cyan'], 'white', ['green', 'red']], [['..
파이썬
2022. 8. 21.