导语:
本文主要介绍了关于python字符串不要最后字符怎么做?的相关知识,希望可以帮到处于编程学习途中的小伙伴
在python中,可以使用rstrip()方法删除string字符串末尾的指定字符(默认为空格)。
rstrip()方法语法:str.rstrip([chars])
chars -- 指定删除的字符(默认为空格)
返回值: 返回删除字符串末尾指定字符生成的新字符串。
示例:
#!/usr/bin/python3
S = " this is string example....wow!!! "
print (S.rstrip())
S = "*****this is string example....wow!!!*****"
print (S.rstrip('*'))
输出结果如下:
this is string example....wow!!!
*****this is string example....wow!!!
本文为原创文章,版权归知行编程网所有,欢迎分享本文,转载请保留出处!
你可能也喜欢
- ♥ python导出的csv中出现中文乱码的处理方法11/27
- ♥ Python 2 即将退休,我们是否应该迁移到 Python 301/01
- ♥ Python字符串操作的精彩总结,值得收藏!10/30
- ♥ python如何分箱12/13
- ♥ Python联合是什么意思?01/03
- ♥ python如何过滤列表中的唯一值09/19
内容反馈