python os.path current working directory code example
Example 1: get path to current directory python
import os
os.path.abspath(os.getcwd())
Example 2: python get current directory
import os
dir_path = os.path.dirname(os.path.realpath(__file__))