How to get the file extension from a filename in Python?
Posted on In QAHow to get the file extension from a filename in Python?
For example, I would like to get “.txt” from “file.txt”.
The Python code:
>>> name, ext = os.path.splitext('file.txt')
>>> name
'file'
>>> ext
'.txt'
Manual of os.path.splitext: https://docs.python.org/2/library/os.path.html#os.path.splitext
One comment