Python_报错:SyntaxError: unexpected character after line continuation character
2021-05-19 12:27
标签:操作 原因 变量 error: pen 写法 ted ati expec Python_报错:SyntaxError: unexpected character after line continuation character 原因:写入的文件内容不正确,应处理为字符串 写成这样就ok了:os.chdir(time_year+"\\"+time_month+"\\"+time_day) 参照第一行的创建目录的写法 Python_报错:SyntaxError: unexpected character after line continuation character 标签:操作 原因 变量 error: pen 写法 ted ati expec 原文地址:https://www.cnblogs.com/rychh/p/9742769.html>>> import os
>>> os.makedirs(time_year+"\\"+time_month+"\\"+time_day)#其中的time_year、time_month、time_day都是有赋值的变量
>>> os.chdir(time_year\time_month\time_day)#问题出在这里,写法不对
File "
>>> os.chdir(time_year+"\\"+time_month+"\\"+time_day)#正确的
>>> with open(time_hours+".txt","w+") as fp:#此种方法能正常进入下一步操作
... fp.read()
...
上一篇:C# 委托补充01
下一篇:JS数组与PHP数组的对比
文章标题:Python_报错:SyntaxError: unexpected character after line continuation character
文章链接:http://soscw.com/index.php/essay/87636.html