Apa fileName = path (file) .stem python

from pathlib import Path

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

# returns 'file'
Agreeable Alpaca