1 rstrip()函数 类似有lstrip()函数
用于去除字符串末尾的特定元素,默认去除空格
a = '3katokjerwkkk' print(a.rstrip('k')) # 去除字符串末尾的k # 3katokjerw
参考:https://blog.csdn.net/xxlovesht/article/details/80379958