Trying to get familiar with python\'s standard library and doing some mucking around with it on my Windows machine. Using python 2.7 I have the following little script whic
"...Photos\Modified\0-PyTest"
Its taking the \0 as a null character. You have to escape \ using \\, or just put an r before the string to make it raw:
\
\\
r
r'C:\Users\me\Photo Projects\Project Name\Project Photos\Modified\0-PyTest'