본문 바로가기

COMPUTER SCIENCE/PYTHON

[Python] 표준 에러 출력하기

print >> sys.stderr, '출력할 내용'   # python2에서만 적용
sys.stderr.write('출력할 내용')      # python2, 3 모두 적용

 

출처 : https://datamod.tistory.com/115

반응형