Python rstrip()方法实例详解
作者:阿特密斯X
这篇文章主要介绍了Python rstrip()方法,包括rstrip方法的语法介绍和参数类型,需要的朋友可以参考下
Python 字符串
描述
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 strip()函数 介绍
- python strip() 函数和 split() 函数的详解及实例
- Python中使用strip()方法删除字符串中空格的教程
- 在Python中操作字符串之rstrip()方法的使用
- Python常见字符串操作函数小结【split()、join()、strip()】
- 对python 中re.sub,replace(),strip()的区别详解
- python利用正则表达式提取字符串
- Python正则替换字符串函数re.sub用法示例
- Python使用re模块正则提取字符串中括号内的内容示例
- Python正则表达式如何进行字符串替换实例
- Python编程快速上手——strip()函数的正则表达式实现方法分析