On repl.it, I tried to call the path I know it exists, but it gave me an error.
Code:
import os
print os.path.exists('C:\Users\')
Error:
SyntaxError: EOL while scanning string literal
exited with non-zero status
You need to escape your backslashes. See the documentation here.
import os
print os.path.exists('C:\\Users\\')