질문 : 인쇄 기능의 출력을 어떻게 플러시 할 수 있습니까? 파이썬의 print 기능을 화면에 강제로 출력하려면 어떻게해야합니까? 답변 Python 3에서 print flush 인수를 사용할 수 있습니다. print("Hello, World!", flush=True) Python 2에서는 다음을 수행해야합니다. import sys sys.stdout.flush() print 호출 후. 기본적으로 print 는 sys.stdout 인쇄합니다 (파일 객체에 대한 자세한 내용은 설명서 참조). 출처 : https://stackoverflow.com/questions/230751/how-can-i-flush-the-output-of-the-print-function