Cómo verificar en qué directorio Python en ejecución
import os
cwd = os.getcwd()
Happy Hawk
import os
cwd = os.getcwd()
import os
#Get Current working Directory
currentDirectory = os.getcwd()
#Change the Current working Directory
os.chdir('/home/varun')