rstrip()

定义:删除字符串末尾的指定字符。

语法:

str.rstrip('/')

说明:不管有几个/都会被删除。

例子:

url = "http://example.com/path/to/file/////"
u = url.rstrip('/')
print u
结果
"http://example.com/path/to/file"
    原文作者:leomei91
    原文地址: https://www.jianshu.com/p/c5b3d396512f
    本文转自网络文章,转载此文章仅为分享知识,如有侵权,请联系博主进行删除。
点赞