récupérer l'extension d'un fichier en python code example
Example: récupérer l'extension d'un fichier en python
import os
_, ext = os.path.splitext('/foo/bar/baz.txt')
print ext # => .txt
import os
_, ext = os.path.splitext('/foo/bar/baz.txt')
print ext # => .txt