标签:strip() style span art csdn 字符 log strip 分割
1 rstrip()函数 类似有lstrip()函数
用于去除字符串末尾的特定元素,默认去除空格
a = ‘3katokjerwkkk‘ print(a.rstrip(‘k‘)) # 去除字符串末尾的k # 3katokjerw
参考:https://blog.csdn.net/xxlovesht/article/details/80379958
标签:strip() style span art csdn 字符 log strip 分割
原文地址:https://www.cnblogs.com/xxswkl/p/11372934.html