码迷,mamicode.com
首页 > 编程语言 > 详细

Python_报错:SyntaxError: EOL while scanning string literal

时间:2019-09-20 22:53:48      阅读:131      评论:0      收藏:0      [点我收藏+]

标签:line   pre   span   字符串   ror   gif   port   lin   class   

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:")
>>>

 

Python_报错:SyntaxError: EOL while scanning string literal

标签:line   pre   span   字符串   ror   gif   port   lin   class   

原文地址:https://www.cnblogs.com/wind-chaser/p/11559925.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!