
March 2, 2021
9 p.m.
On 2/03/21 7:01 am, mmax42852@gmail.com wrote:
Currently, the only way to concatenate an integer to a bytes object is by converting the integer to bytes with a function call before concatenating.
No, it's not:
b = bytearray() b.append(42) b bytearray(b'*')
-- Greg