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:
Example of strip() in action; in this case, removing a leading plus sign:
In [1]: phone_number = "+14158889999"
In [2]: phone_number.strip('+')
Out[2]: '14158889999'