반응형
Python/Python 개발환경2024. 11. 14. 19:44Python 디버깅시 print 대신 IceCream의 ic 사용하세요

Python 디버깅시 print 대신 사용할 수 있는 IceCream 패키지의 ic를 다룹니다.최초작성 2024. 11. 14ic는 print 함수보다 많은 정보를 출력해줍니다.  from icecream import icdef add(x, y):    return x + yprint(add(10, 20)) # 30ic(add(10, 20))# ic| add(10, 20): 30ic의 출력을 한 줄로 조정할 수 있습니다. ic.disable()를 사용하면 ic의 출력을 막습니다.  from icecream import icdef add(x, y):    return x + y# ic 출력을 막습니다.ic.disable()print(add(10, 20)) ic(add(10, 20)) 30ic.enable(..

반응형
image