Python membagi jalur file menjadi root dan ekstensi

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