Answers for "in python how to get the filename from the path"

1

python extract thefile name from relative path

import os
infile = "./../../../../_data/matrix_data/5mer_normalized.tsv"
print(os.path.basename(infile))
>>> "5mer_normalized.tsv"
Posted by: Guest on October-17-2020

Code answers related to "in python how to get the filename from the path"

Python Answers by Framework

Browse Popular Code Answers by Language