Answers for "how to find the extension of an file in python"

2

python get file extension from path

import os.path
extension = os.path.splitext(filename)[1]
Posted by: Guest on May-08-2020

Code answers related to "how to find the extension of an file in python"

Python Answers by Framework

Browse Popular Code Answers by Language