简体   繁体   中英

Is there a way to connect repl.it with data in local drive?

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\\')

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM