Python rstrip()方法
描述
Python rstrip() 删除 string 字符串末尾的指定字符(默认为空格).
语法
rstrip()方法语法:
str.rstrip([chars])
参数
- chars -- 指定删除的字符(默认为空格)
返回值
返回删除 string 字符串末尾的指定字符后生成的新字符串。
实例
以下实例展示了rstrip()函数的使用方法:
#!/usr/bin/python
str = " this is string example....wow!!! ";
print str.rstrip();
str = "88888888this is string example....wow!!!8888888";
print str.rstrip('8');
以上实例输出结果如下:
this is string example....wow!!! 88888888this is string example....wow!!!
Python rstrip()方法详解
博客主要介绍了 Python 的 rstrip() 方法,该方法用于删除字符串末尾的指定字符,默认为空格。详细说明了其语法、参数和返回值,还给出实例展示使用方法,并提供了相关参考链接。
Python 字符串
829

被折叠的 条评论
为什么被折叠?



