python get path of current .py file code example
Example 1: get path to current directory python
import os
os.path.abspath(os.getcwd())
Example 2: get pyhton file path python
import os
os.path.realpath(__file__)
import os
os.path.abspath(os.getcwd())
import os
os.path.realpath(__file__)