Python_报错:SyntaxError: unexpected character after line continuation character

原因:写入的文件内容不正确,应处理为字符串

>>> 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 "<stdin>", line 1
    os.chdir(time_year\time_month\time_day)
                                          ^
SyntaxError: unexpected character after line continuation character

写成这样就ok了:os.chdir(time_year+"\\"+time_month+"\\"+time_day)

参照第一行的创建目录的写法

>>> os.chdir(time_year+"\\"+time_month+"\\"+time_day)#正确的
>>> with open(time_hours+".txt","w+") as fp:#此种方法能正常进入下一步操作
...     fp.read()
...

原文地址:https://www.cnblogs.com/rychh/p/9742769.html

时间: 2024-10-11 02:11:27

Python_报错:SyntaxError: unexpected character after line continuation character的相关文章

SyntaxError: unexpected character after line continuation character

SyntaxError: unexpected character after line continuation character原创梨花?酱~ 最后发布于2019-01-05 14:37:48 阅读数 11683 收藏展开待解决问题:在运行.py文件时报错SyntaxError: unexpected character after line continuation character 首先了解一下python的三种运行方式: 利用python的命令解释器运行短小的代码.1)首先安装开源

Python_报错:SyntaxError: (unicode error) &#39;unicodeescape&#39; codec can&#39;t decode bytes in position 2-3: truncated \UXXXXXXXX escape

Python运行后,报错:SyntaxError: (unicode error) 'unicodeescape' codec can't decode bytes in position 2-3: truncated \UXXXXXXXX escape 原因:window 读取文件可以用\,但是在字符串中\是被当作转义字符来使用,经过转义之后可能就找不到路径的资源了,例如\t会转义为tab键 上代码: >>> def func1(path_name): ... import os ..

Python_报错:SyntaxError: EOL while scanning string literal

Python_报错:SyntaxError: EOL while scanning string literal 原因:python中,目录操作时,字符串的最后一个字符是斜杠,会导致出错,去掉\即可 上代码 >>> import os >>> os.chdir(r"e:\")#字符串的最后一个字符是斜杠,会导致出错 File "<stdin>", line 1 os.chdir(r"e:\") ^

树莓派(Raspberry Pi 3) centos7使用yum命令报错File &quot;/usr/bin/yum&quot;, line 30 except KeyboardInterrupt, e:

使用yum命令报错 File "/usr/bin/yum", line 30 except KeyboardInterrupt, e: ^SyntaxError: invalid syntax 问题如下:  问题出现原因: yum包管理是使用python2.x写的,将python2.x升级到python3.x以后,由于python版本语法兼容性导致问题出现 解决办法: 修改yum配置文件,将python版本指向以前的旧版本 # vi /usr/bin/yum #!/usr/bin/py

Python_报错:TypeError: file must have &#39;read&#39; and &#39;readline&#39; attributes

Python 报错:TypeError: file must have 'read' and 'readline' attributes 在运行序列化(pickle)相关功能时报错:TypeError: file must have 'read' and 'readline' attributes 上代码: >>> fp = open("a.txt","r+") >>> import pickle >>> pic

python三元运算符—报错“SyntaxError: can&#39;t assign to conditional expression”

运行代码: a=1 b=1 x=1 if a==b else x=0 print(x) 提示错误: File "test.py", line 3 x=a if a==b else x=0 ^ SyntaxError: can't assign to conditional expression expression是表达式,就是加减乘除等各种运算符号连接起来的式子(statement是语句,如if语句,while,复制语句等): 三目运算中表达式只能作为左值 修改后: a=1 b=1

vmware安装minimal centos报错/etc/rc5.d/s99local : line:25 : eject : command not found

今天在用centos mini 版的时候创建虚拟机出现错误提示:vmware安装minimal centos报错/etc/rc5.d/s99local : line:25 : eject : command not found 解决办法:先创建虚拟机后再添加centos ios 可以参照: http://www.dabu.info/vmware-install-minimal-centos-rc5-line25-eject-command-not-found.html

mysql导入报错 ERROR 1286 (42000) at line 1: Unknown table engine &#39;InnoDB&#39;

[[email protected] mysql]# mysql -u root -p'123456'  jiang < schema.sql                 ERROR 1286 (42000) at line 1: Unknown table engine 'InnoDB' mysql> select * from ENGINES; +------------+---------+-----------------------------------------------

JS请求报错:Unexpected token T in JSON at position 0

<?php /* 最近做一个ajax validate表单验证提交的代码,在ajax提交的时候 JS请求报错:Unexpected token T in JSON at position 0 描述: 这是一个请求,参数的地方报这要的错,请问是为什么? 百思不得其解啊 解决方案1: 去看下json的格式要求,JSON.parse()方法对json串要求很严格 解决方案2: http://www.bejson.com/ 用这个网址测试试试json格式是不是有误,换行,单引号什么的会导致报错,格式要求