python字符串不要最后字符怎么做?

图片[1]-python字符串不要最后字符怎么做?-uusu优素-乐高,模型,3d打印,编程

python中可以使用rstrip()方法删除 string 字符串末尾的指定字符(默认为空格)。

rstrip()方法语法:str.rstrip([chars])

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

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

示例:

#!/usr/bin/python3

S="thisisstringexample....wow!!!"
print(S.rstrip())
S="*****thisisstringexample....wow!!!*****"
print(S.rstrip('*'))

输出结果如下:

thisisstring example….wow!!!

*****thisisstring example….wow!!!

原文来自:https://www.py.cn
© 版权声明
THE END
喜欢就支持一下吧
点赞12 分享
评论 抢沙发
头像
欢迎您留下宝贵的见解!
提交
头像

昵称

取消
昵称表情代码图片

    暂无评论内容