Touchstone
Touchstone

Reputation: 532

Is it possible to delete the last byte of a bytes in python?

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

Answers (1)

niekas
niekas

Reputation: 9087

You can use slicing:

teststr[:-1]

is equal to:

b'\x01\x02'

Upvotes: 4

Related Questions