Python_报错:SyntaxError: EOL while scanning string literal
原因:python中,目录操作时,字符串的最后一个字符是斜杠,会导致出错,去掉\即可
上代码
>>> import os >>> os.chdir(r"e:\")#字符串的最后一个字符是斜杠,会导致出错 File "<stdin>", line 1 os.chdir(r"e:\") ^ SyntaxError: EOL while scanning string literal
解决方法:去掉最后的\即可
>>> import os >>> os.chdir(r"e:") >>>
原文地址:https://www.cnblogs.com/rychh/p/9744896.html
时间: 2024-10-29 16:08:20