Answers for "python get file ending"

0

python get file ending

import os
# creates a tuple.
# fn contains the filename, in this case abc
# fend contains the file ending, in this case .txt
fname, fend = os.path.splitext("/Users/pankaj/abc.txt")
Posted by: Guest on March-26-2021

Python Answers by Framework

Browse Popular Code Answers by Language