how to find a directory in python code example
Example 1: get current working directory python
# print current working directory in python
import os
cwd = os.getcwd()
print(cwd)
Example 2: python get dir
import os
#full path
dir_path = os.path.dirname(os.path.realpath(__file__))
#current dir
cwd = os.getcwd()