python get current dir path code example
Example 1: python get current directory
import os
print(os.getcwd())
Example 2: python os get dir path
from os import getcwd # only import "getcwd" from os
getcwd() # Get the current working directory
import os
print(os.getcwd())
from os import getcwd # only import "getcwd" from os
getcwd() # Get the current working directory