3
votes
How to concatenate strings with binary values in python?
The chr() function will have the effect of translating a variable into a string with the binary value you are looking for.
>>> sep = 0x1
>>> sepc = chr(sep)
>&g …
