15
파이썬에서 stderr로 인쇄하는 방법?
stderr에 쓰는 몇 가지 방법이 있습니다. # Note: this first one does not work in Python 3 print >> sys.stderr, "spam" sys.stderr.write("spam\n") os.write(2, b"spam\n") from __future__ import print_function print("spam", file=sys.stderr) 그것은 zen의 Python # 13 † 과 모순되는 것 같습니다. 여기서 차이점은 무엇이며 어떤 방법 으로든 장단점이 있습니까? 어떤 방법을 …