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.
最初の 256 バイトを除いてファイルをコピーしたい。
Pythonでそれを行う良い方法はありますか?
簡単な方法は、カウンターでバイト単位で読み取り、256 になったときにのみコピーを開始することだと思います。
もっとエレガントな方法を望んでいました。
ありがとう。
with open('input', 'rb') as in_file: with open('output', 'wb') as out_file: out_file.write(in_file.read()[256:])