Reputation: 532
For some reason, I have to remove the last byte of a bytes. For example,
teststr = b'\x01\x02\x03'
In my case, I have to remove the last byte \x03. I know the strip can do in the python string case, but it doesn't work in the bytes case.
Is there a way to do this? Any information is appreciated.
Upvotes: 4
Views: 8404