用法:
bytes.rstrip([chars])
bytearray.rstrip([chars])
返回删除了指定尾随字节的序列副本。
chars
参数是一个二进制序列,指定要删除的字节值集 - 该名称指的是该方法通常与 ASCII 字符一起使用的事实。如果省略或None
,则chars
参数默认为删除 ASCII 空格。chars
参数不是后缀;相反,它的值的所有组合都被剥离:>>> b' spacious '.rstrip() b' spacious' >>> b'mississippi'.rstrip(b'ipz') b'mississ'
要删除的字节值的二进制序列可以是任何bytes-like 对象。有关删除单个后缀字符串而不是所有字符集的方法,请参见
removesuffix()
。例如:>>> b'Monty Python'.rstrip(b' Python') b'M' >>> b'Monty Python'.removesuffix(b' Python') b'Monty'
注意
此方法的 bytearray 版本确实
not
就地操作 - 它总是产生一个新对象,即使没有进行任何更改。
相关用法
- Python bytes.removesuffix用法及代码示例
- Python bytes.removeprefix用法及代码示例
- Python bytes.isupper用法及代码示例
- Python bytes.zfill用法及代码示例
- Python bytes.isalpha用法及代码示例
- Python bytes.hex用法及代码示例
- Python bytes.title用法及代码示例
- Python bytes.isalnum用法及代码示例
- Python bytes.split用法及代码示例
- Python bytes.lstrip用法及代码示例
- Python bytes.expandtabs用法及代码示例
- Python bytes.splitlines用法及代码示例
- Python bytes.isdigit用法及代码示例
- Python bytes.istitle用法及代码示例
- Python bytes.strip用法及代码示例
- Python bytes.islower用法及代码示例
- Python bytes()用法及代码示例
- Python bytearray()用法及代码示例
- Python binascii.crc32用法及代码示例
- Python base64.b64decode()用法及代码示例
注:本文由纯净天空筛选整理自python.org大神的英文原创作品 bytes.rstrip。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。