ID EN
Pathlib

stem

Python 3.11

The final path component, without its suffix:

Syntax

PYTHON
PurePath.stem

Examples

Example 1
PYTHON
>>> PurePosixPath('my/library.tar.gz').stem
'library.tar'
>>> PurePosixPath('my/library.tar').stem
'library'
>>> PurePosixPath('my/library').stem
'library'