Was macht Dateiname = Pfad (Datei) .Stem Python

from pathlib import Path

Path('/root/dir/sub/file.ext').stem

# returns 'file'
Agreeable Alpaca