I wanted to know what is the pythonic function for this :
I want to remove everything before the wa path.
wa
p = path.split(\'/\') counter
>>> path = '/book/html/wa/foo/bar/' >>> path[path.find('/wa'):] '/wa/foo/bar/'