码迷,mamicode.com
首页 >  
搜索关键字:python报错    ( 111个结果
python 报错RuntimeError: dictionary changed size during iteration
报错是因为在字典迭代期间改变字典大小 我们可以通过取出字典的键值,在转化为列表,这样在for循环期间就可以删除了 ...
分类:编程语言   时间:2018-10-12 01:17:36    阅读次数:300
python-报错总结
1、 alert = driver.switch_to.alert() TypeError: 'Alert' object is not callable 对象不能用函数形式调用,就是不能callable。 此类错误一般是由于内部函数被用作变量名时发生 ...
分类:编程语言   时间:2018-10-10 10:45:31    阅读次数:126
Python_报错:SyntaxError: EOL while scanning string literal
Python_报错:SyntaxError: EOL while scanning string literal 原因:python中,目录操作时,字符串的最后一个字符是斜杠,会导致出错,去掉\即可 上代码 解决方法:去掉最后的\即可 ...
分类:编程语言   时间:2018-10-05 16:02:06    阅读次数:806
Python_报错:SyntaxError: (unicode error) 'unicodeescape' codec can'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 读取文件可以用\,但是在 ...
分类:编程语言   时间:2018-10-05 01:01:06    阅读次数:347
Python_报错:SyntaxError: unexpected character after line continuation character
Python_报错:SyntaxError: unexpected character after line continuation character 原因:写入的文件内容不正确,应处理为字符串 写成这样就ok了:os.chdir(time_year+"\\"+time_month+"\\"+t ...
分类:编程语言   时间:2018-10-04 18:58:27    阅读次数:427
Python_报错:TypeError: Tuple or struct_time argument required
报错:TypeError: Tuple or struct_time argument required 原因:时间戳和格式化处理时间不能直接使用会报错 上代码: import time time3 = time.asctime(time.time())# print ("本地时间为 :",time ...
分类:编程语言   时间:2018-10-04 16:41:16    阅读次数:1558
Python_报错:SyntaxError: 'break' outside loopIndexError: list assignment index out of range
今天发现一个报错,卡了好几个点,后来发现原因后,脸上三条黑线,尴尬啊!!! 报错:SyntaxError: 'break' outside loopIndexError: list assignment index out of range 上源码: def func(n,target_str): ...
分类:编程语言   时间:2018-10-04 09:36:44    阅读次数:389
Python报错:UnicodeDecodeError: ‘gbk‘ codec can‘t ...
python读取文件时提示:UnicodeDecodeError:‘gbk‘codeccan‘tdecodebyte0xaainposition82:illegalmultibytesequence解决办法:例如,错误代码是:f=open(file_new,‘r‘)改为如下:f=open(file_new,‘r‘,encoding=‘UTF-8‘)这样执行python就不会
分类:编程语言   时间:2018-09-28 12:53:33    阅读次数:213
pip安装mysql_python报错
pip安装mysql_python报错_mysql.c:29:20:fatalerror:Python.h:Nosuchfileordirectory#include"Python.h"^compilationterminated.error:command‘gcc‘failedwithexitstatus1----------------------------------------Comma
分类:数据库   时间:2018-09-24 00:48:35    阅读次数:178
django使用session报错:no such table: django_session
Django版本:1.11.15 使用session的代码:request.session['key'] = value 运行后报错:no such table: django_session 解决办法: 执行如下命令,初始化数据库python manage.py migrate再次运行,可以了 初 ...
分类:其他好文   时间:2018-09-05 12:53:08    阅读次数:574
111条   上一页 1 ... 3 4 5 6 7 ... 12 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!