Quick note to self on how to get the current working directory of in a Python script, like you have pwd
(print working directory) on a Linux/Unix command line:
import os
print os.getcwd()
Quick note to self on how to get the current working directory of in a Python script, like you have pwd
(print working directory) on a Linux/Unix command line:
import os
print os.getcwd()