I have a binary representation string,like
01010101
How can I convert it to real binary and write it to a binary file?
|
|
|
Use the
Python 2 uses strings to handle binary data, so you would use the
Python 3 handles binary and text differently, so you need to use the
Once you have your binary string, you can open a file in binary mode and write the data to it like this:
|
||||
|
|