Just trying to line these up in a long string. All works well but for some reason interprets \x2b as a + sign?
I have a feeling I am misinterpreting bytes...any instruction welcome!
>>> a = b'\x02'
>>> b = b'\xca'
>>> c = b'\x2b'
>>> d = b'\x87'
>>> print(a+b+c+d)
b'\x02\xca+\x87
Thanks, Matt