What's the easiest way in python to concatenate string with binary values ?
sep = 0x1
data = ["abc","def","ghi","jkl"]
Looking for result data "abc0x1def0x1ghi0x1jkl" with the 0x1 being binary value not string "0x1".
|
1
|
What's the easiest way in python to concatenate string with binary values ?
Looking for result data
|
||
|
|
|
|
I think
should do it. |
||
|
|
The chr() function will have the effect of translating a variable into a string with the binary value you are looking for.
The join() function can then be used to concat a series of strings with your binary value as a separator.
|
||
|