Python divise un chemin de fichier en racine et en extension

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