Answers for "how to get path of the file in python"

2

get full path of file python

>>> import os
>>> os.path.abspath("mydir/myfile.txt")
'C:/example/cwd/mydir/myfile.txt'
Posted by: Guest on December-24-2020
-3

get pyhton file path python

import os

os.path.realpath(__file__)
Posted by: Guest on October-13-2020

Code answers related to "how to get path of the file in python"

Python Answers by Framework

Browse Popular Code Answers by Language