how to get the path of a file with python code example
Example 1: get full path of file python
>>> import os
>>> os.path.abspath("mydir/myfile.txt")
'C:/example/cwd/mydir/myfile.txt'
Example 2: python get path of current file
import pathlib
pathlib.Path(__file__).parent.absolute()