Python dividiu um caminho de arquivo na raiz e extensão

import os
root, ext = os.path.splitext(path)
Johan