python get python directory code example
Example 1: python get current directory
import os
print(os.getcwd())
Example 2: get python directiory
import sys
print('\n'.join(sys.path))
Example 3: python os get dir path
from os import getcwd # only import "getcwd" from os
getcwd() # Get the current working directory