Python에서 stdout 출력을 문자열 버퍼로 리디렉션
Python에서 ftplib를 사용할 때 일부 함수는 문자열을 반환하는 대신 stdout에 정보를 출력합니다. 문자열 변수에 이 출력이 필요한 경우 리디렉션이 필요합니다.
stdout을 메모리 내 버퍼로 리디렉션하려면 다음 해결 방법을 고려하세요.
from cStringIO import StringIO # Python 2 # or from io import StringIO # Python 3 import sys # Save the original stdout object old_stdout = sys.stdout # Create a new StringIO object to capture stdout output mystdout = StringIO() # Redirect stdout to the new StringIO object sys.stdout = mystdout # Execute code that generates stdout output # ... # Restore original stdout sys.stdout = old_stdout # Access the captured stdout output output = mystdout.getvalue()
이 방법은 StringIO를 효과적으로 래핑합니다. stdout 주위에 버퍼링하여 실행 후 출력을 문자열로 캡처하고 조작할 수 있습니다.
위 내용은 Python의 stdout 출력을 문자열 변수로 어떻게 리디렉션할 수 있나요?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!