Python删除URL的最后一部分

时间:2019-03-02 18:29:57

标签: python python-3.x url

我想删除某些URL的最后一部分。例如:http://localhost/browser/Folder/Folder2/Folder3/the%20end%20xd.txt应该变成http://localhost/browser/Folder/Folder2/Folder3。我如何轻松删除最后一个斜杠及其后的部分?

1 个答案:

答案 0 :(得分:0)

您可以尝试

url = "http://localhost/browser/Folder/Folder2/Folder3/the%20end%20xd.txt"
url = url[:url.rfind('/')]