python point to actual dir code example
Example 1: working directory python
import os
cwd = os.getcwd()
Example 2: get directory of file python
import os
dir_path = os.path.dirname(os.path.realpath(__file__))
import os
cwd = os.getcwd()
import os
dir_path = os.path.dirname(os.path.realpath(__file__))