Python 中的 rstrip()函数

首页 / Python2入门教程 / Python 中的 rstrip()函数

Python rStrip()返回字符串的副本,其中所有字符都已从字符串的末尾剥离(默认空格字符)。

rstrip() - 语法

str.rstrip([chars])
  • chars  -  您可以提供必须修剪的字符。

rstrip() - 返回值

此方法返回字符串的副本,其中所有字符都已从字符串的末尾剥离(默认空格字符)。

rstrip() - 示例

以下示例显示了rStrip()方法的用法。

#!/usr/bin/python

str="     this is string example....wow!!!     ";
print str.rstrip()
str="88888888this is string example....wow!!!8888888";
print str.rstrip('8')

当无涯教程运行上面的程序时,它产生以下输出-

链接:https://www.learnfk.comhttps://www.learnfk.com/python/string-rstrip.html

来源:LearnFk无涯教程网

this is string example....wow!!!
88888888this is string example....wow!!!

祝学习愉快!(内容编辑有误?请选中要编辑内容 -> 右键 -> 修改 -> 提交!)

技术教程推荐

朱赟的技术管理课 -〔朱赟〕

技术管理实战36讲 -〔刘建国〕

玩转Spring全家桶 -〔丁雪丰〕

MongoDB高手课 -〔唐建法(TJ)〕

后端存储实战课 -〔李玥〕

程序员的测试课 -〔郑晔〕

陈天 · Rust 编程第一课 -〔陈天〕

编程高手必学的内存知识 -〔海纳〕

商业思维案例笔记 -〔曹雄峰〕

好记忆不如烂笔头。留下您的足迹吧 :)