how to get complete path in 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 file location path
import os
print('getcwd: ', os.getcwd())
print('__file__: ', __file__)