扫码一下
查看教程更方便
Python rstrip() 删除 string 字符串末尾的指定字符(默认为空格)。
rstrip()方法语法:
str.rstrip([chars])
返回删除 string 字符串末尾的指定字符后生成的新字符串。
以下实例展示了rstrip()函数的使用方法:
#!/usr/bin/python3
str = " this is string example....wow!!! ";
print (str.rstrip());
str = "88888888this is string example....wow!!!8888888";
print (str.rstrip('8'));
上述代码执行结果如下:
this is string example....wow!!!
88888888this is string example....wow!!!