Answers for "pick the filename without the extension python3"

2

python get filename without extension

#Using pathlib in Python 3.4+
from pathlib import Path
Path('/root/dir/sub/file.ext').stem
Posted by: Guest on October-13-2020

Code answers related to "pick the filename without the extension python3"

Python Answers by Framework

Browse Popular Code Answers by Language