Answers for "python check filename extension"

3

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
Posted by: Guest on November-04-2020

Code answers related to "python check filename extension"

Python Answers by Framework

Browse Popular Code Answers by Language