Python에서 os.system은 시스템 명령을 실행하고 값을 반환하는 데 사용됩니다. 명령의 종료 상태를 나타냅니다. 그러나 명령의 출력은 일반적으로 화면에 표시됩니다. 특정 상황에서는 이것이 바람직하지 않을 수 있습니다.
명령 출력을 변수에 할당하고 화면에 표시되지 않도록 하려면 os.system 대신 os.popen() 함수를 사용할 수 있습니다. os.popen()은 명령의 출력을 읽는 데 사용할 수 있는 파이프 객체를 반환합니다.
import os # Use os.popen to capture the output of the command popen_object = os.popen('cat /etc/services') # Read the output from the pipe object output = popen_object.read() # Print the output, which will not be displayed on the screen print(output)
또는 더 강력한 subprocess.Popen 클래스를 사용하여 하위 프로세스를 관리하고 통신할 수 있습니다. subprocess.Popen을 사용하여 동일한 결과를 얻는 방법은 다음과 같습니다.
import subprocess # Create a subprocess object proc = subprocess.Popen(['cat', '/etc/services'], stdout=subprocess.PIPE) # Communicate with the subprocess and retrieve its output output, _ = proc.communicate() # Print the output, which will not be displayed on the screen print(output)
위 내용은 화면 표시 없이 Python에서 시스템 명령 출력을 캡처하고 변수에 할당하는 방법은 무엇입니까?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!