Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
私のPythonプログラムの最初に、次の行があります。
sys.stdout = open('stdout_file', 'w')
プログラムの途中で、stdoutを通常のstdoutに戻したいと思います。どうすればよいですか?
オリジナルstdoutは としてアクセスできますsys.__stdout__。これは文書化されています。
stdout
sys.__stdout__