i am using this:
output2 = subprocess.check_output("find /users/experiment_in14 -empty", shell=True)
which perfectly working for me but I would like to replace the full path in order to change the path only once at the beginning of the code and not everywhere. I am thinking something like this:
original = /users/experiment_in14
output2 = subprocess.check_output("find ,original, -empty", shell=True)
print output2
but it doesn't work. which is the right way to replace the path?