Python_报错:SyntaxError: EOL while scanning string literal
2021-05-18 09:28
标签:方法 去掉 字符 err eol lin error class 目录操作 Python_报错:SyntaxError: EOL while scanning string literal 原因:python中,目录操作时,字符串的最后一个字符是斜杠,会导致出错,去掉\即可 上代码 解决方法:去掉最后的\即可 Python_报错:SyntaxError: EOL while scanning string literal 标签:方法 去掉 字符 err eol lin error class 目录操作 原文地址:https://www.cnblogs.com/rychh/p/9744896.html>>> import os
>>> os.chdir(r"e:\")#字符串的最后一个字符是斜杠,会导致出错
File "
>>> import os
>>> os.chdir(r"e:")
>>>
上一篇:C/C++基础知识总结
下一篇:常见的排序算法总结
文章标题:Python_报错:SyntaxError: EOL while scanning string literal
文章链接:http://soscw.com/index.php/essay/87125.html