convert a binary file in a list (python)
- by beratch
Hi all,
I'd like to be able to open a binary file, and make a list (kind of array) with all the chars in, like : "\x21\x23\x22\x21\x22\x31" to ["\x21","\x23","\x22","\x21","\x22","\x31"]
What would be the best solution to convert it ?
Thanks !