Binary file IO in python, where to start?

前端 未结 3 1473
暖寄归人
暖寄归人 2020-12-28 20:55

As a self-taught python hobbyist, how would I go about learning to import and export binary files using standard formats?

I\'d like to implement a script that takes

3条回答
  •  长情又很酷
    2020-12-28 21:43

    You should probably start with the struct module, as you pointed to in your question, and of course, open the file as a binary.

    Basically you just start at the beginning of the file and pick it apart piece by piece. It's a hassle, but not a huge problem. If the files are compressed or encrypted, things can get more difficult. It's helpful if you start with a file that you know the contents of so you're not guessing all the time.

    Try it a bit, and maybe you'll evolve more specific questions.

提交回复
热议问题