简体   繁体   中英

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.

You can use slicing:

teststr[:-1]

is equal to:

b'\x01\x02'

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM