python中rstrip是什么意思
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如何设定函数传参类型 下一篇:C语言线程间通信的方法有哪些
发表评论:
◎欢迎参与讨论,请在这里发表您的看法、交流您的观点。