当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Python bytes.removesuffix用法及代码示例


用法:

bytes.removesuffix(suffix, /)
bytearray.removesuffix(suffix, /)

如果二进制数据以 suffix 字符串结尾并且 suffix 不为空,则返回 bytes[:-len(suffix)] 。否则,返回原始二进制数据的副本:

>>> b'MiscTests'.removesuffix(b'Tests')
b'Misc'
>>> b'TmpDirMixin'.removesuffix(b'Tests')
b'TmpDirMixin'

suffix 可以是任何 bytes-like 对象。

注意

此方法的 bytearray 版本确实 not 就地操作 - 它总是产生一个新对象,即使没有进行任何更改。

3.9 版中的新函数。

相关用法


注:本文由纯净天空筛选整理自python.org大神的英文原创作品 bytes.removesuffix。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。