calthoff / tstp

This is an old repository for the exercises in "The Self-Taught Programmer." Please see /selftaught.
166 stars 193 forks source link

os.path not helping #45

Open ficispan opened 2 years ago

ficispan commented 2 years ago

Hi, I am wondering why os.path module is not helping me.

I need to get this exact path:

"D:\Pavel\naucse-python\The.Matrix.srt"

Using os.path:

os.path.join("D:", "Pavel","naucse-python","The.Matrix.srt")

i get:

"D:Pavel\naucse-python\The.Matrix.srt"

which is wrong. Why?