脚本之家,脚本语言编程技术及教程分享平台!
分类导航

Python|VBS|Ruby|Lua|perl|VBA|Golang|PowerShell|Erlang|autoit|Dos|bat|

服务器之家 - 脚本之家 - Python - Python rstrip()方法实例详解

Python rstrip()方法实例详解

2021-04-18 00:14阿特密斯X Python

这篇文章主要介绍了Python rstrip()方法,包括rstrip方法的语法介绍和参数类型,需要的朋友可以参考下

Python 字符串

描述

Python rstrip() 删除 string 字符串末尾的指定字符(默认为空格).

语法

rstrip()方法语法:

str.rstrip([chars])

参数

chars – 指定删除的字符(默认为空格)

返回值

返回删除 string 字符串末尾的指定字符后生成的新字符串。

实例

以下实例展示了rstrip()函数的使用方法:

?
1
2
3
4
5
#!/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()方法实例详解,希望对大家有所帮助,如果大家有任何疑问欢迎给我留言,小编会及时回复大家的!

原文链接:https://blog.csdn.net/qq_42194192/article/details/83957835

延伸 · 阅读

精彩推荐