Python teilte einen Dateipfad in Stamm und Erweiterung auf

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