python中rstrip是什么意思 python3 rstrip

主机教程 建站分享 2年前 (2022-12-08) 169次浏览

文章摘要:python中rstrip是什么意思 python3 rstrip

python中rstrip是指删除字符串末尾指定字符的方法,rstrip的语法格式“str.rstrip([c […]

python中rstrip是指删除字符串末尾指定字符的方法,rstrip的语法格式“str.rstrip([chars])”,这里chars是指定删除的字符。

具体使用步骤:

1、首先打开python编辑器,新建一个python项目。

2、在python项目中使用rstrip方法来删除删除字符串末尾指定字符。

print str.rstrip('8'); #删除字符串末尾为“8”的字符

示例代码:

#!/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是什么意思 python3 rstrip
文章链接:http://www.7966.org/post/10600.html
转载请注明出处

喜欢 (0)