Python os.path.join
- by Jim
Hello, I am trying to learn python and am making a program that will output a script. I want to use os.path.join but am pretty confused (I know I am very bad at scripting/programming) See, according to the docs ( http://docs.python.org/library/os.path.html ) if I say
os.path.join('c:', 'sourcedir')
I get C:sourcedir as it's output. According…