I have a string that contains a path
str = "/example/path/with/different/trailing/delimiter"
and I want to trim the leading and trailing /
and
. What is the best practice in Python 3?
Currently I'm using
trimmedPath = str.strip("/")
# trimmedPath is "example/path/with/different/trailing/delimiter" as desired
Two questions:
- Is this the best trim function for trimming specific characters in Python 3?
- Are there specific path functions for such operations in Python 3 so I don't have to set the delimiters manually?
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…