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.
ascii85.encode(file('/work/file1'), sys.write('/work/file2')
sys.stdoutを使用してこのコードでファイルに書き込もうとしていますが、書き込みが行われていません。
ファイルに書き込むコードを修正するにはどうすればよいですか?
試す
ascii85.encode(file('/work/file1'), open('/work/file2', 'w'))
あなたが何をしようとしているのか正確にはわかりませんが、それが Python で書き込むためにファイルを開く方法です。
これがあなたの望むものでない場合は、質問を明確にしてください。