file extension is python code example
Example 1: python check file extension
# Checking for single extension (.txt) of file
if file.endswith(".txt"):
# do something
# Checking multiple extensions (.txt, .pdf, .mp3, ...)
if file.endswith((".txt", ".pdf", ".mp3")):
# do something
Example 2: python get file extension from path
import os.path
extension = os.path.splitext(filename)[1]