码迷,mamicode.com
首页 >  
搜索关键字:indentationerror    ( 91个结果
Python异常处理
异常处理 AttributeError 试图访问一个对象没有的树形,比如foo.x,但是foo没有属性xIOError 输入/输出异常;基本上是无法打开文件ImportError 无法引入模块或包;基本上是路径问题或名称错误IndentationError 语法错误(的子类) ;代码没有正确对齐In ...
分类:编程语言   时间:2016-08-22 02:07:21    阅读次数:162
空格和TAB键混用错误:IndentationError: unindent does not match any outer indentation level
转自:http://www.crifan.com/python_syntax_error_indentationerror/comment-page-1/ 【已解决】Python脚本运行出现语法错误:IndentationError: unindent does not match any oute ...
分类:其他好文   时间:2016-07-21 19:47:57    阅读次数:190
Python 中的异常种类
常用异常AttributeError试图访问一个对象没有的树形,比如foo.x,但是foo没有属性xIOError输入/输出异常;基本上是无法打开文件ImportError无法引入模块或包;基本上是路径问题或名称错误IndentationError语法错误(的子类);代码没有正确对齐IndexError下标索引超出序列边界..
分类:编程语言   时间:2016-05-23 10:49:17    阅读次数:401
Python缩进
今天练习代码的时候发现一个问题,练习类,我在notepad++上写的代码运行后,复制到pycharm上运行然后报错,看代码 看着没错吧,但是当我运行这段代码时,pycharm跟我说:“兄弟,你这代码有问题!--def getName(self): IndentationError: unindent ...
分类:编程语言   时间:2016-04-04 13:01:42    阅读次数:149
[每日一记] Python报错 IndentationError: unexpected indent
IndentationError: unexpected indent 代码缩进出现错误 今天这个报错的原因是,早些时候的代码里Tab和空格混起来用了,,,【不是我。。。是编辑器的锅 不过我已经把Sublime Text 2的Tab键配置为4个空格了(详见上一篇随笔),以后应该不会出现类似错误。
分类:编程语言   时间:2016-03-22 16:12:08    阅读次数:383
IndentationError: unindent does not match any outer indentation level
runfile('C:/Users/kcl/Documents/Python Scripts/mlp_lasagne.py', wdir='C:/Users/kcl/Documents/Python Scripts') File "C:/Users/kcl/Documents/Python Scri
分类:其他好文   时间:2016-02-26 18:31:23    阅读次数:138
Python 常见异常列表
常见Python异常异常描述AssertionErrorassert(断言)语句失败AttributeError试图访问一个对象没有的属性,比如foo.x,但是foo没有x这个属性。IOError输入/输出异常,基本上是无法打开文件。ImportError无法引入模块或者包,基本上是路径问题IndentationError语法错误,代码没..
分类:编程语言   时间:2016-01-29 03:38:56    阅读次数:260
python入门时最基础的一些报错
今天抽了点时间给大家总结一下刚才是学python写程序时出现的一下最基础也是最常用的报错信息和一些常见的英语单词以后还会有补充希望对大家有所帮助!1:syntaxError:语法错误2:invalidsyntax:无效的语法3:IndentationError:缩进错误4:expected:盼望5:indenterd:缩进6:blo..
分类:编程语言   时间:2016-01-20 06:25:40    阅读次数:167
IndentationError: unindent does not match any outer indentation level
先上一个有用的连接:http://www.crifan.com/python_syntax_error_indentationerror/comment-page-1/ IDE用的Sublime Text 2,绝大多数时候自动对齐没有问题,但是把一段代码剪切换位置后始终报错Indentatio...
分类:其他好文   时间:2016-01-11 22:02:59    阅读次数:150
Python一般错误
1. IndentationError: unindent does not match any outer indentation level格式对齐的问题。Python对空格和Tab有严格区别
分类:编程语言   时间:2015-11-24 20:21:46    阅读次数:142
91条   上一页 1 ... 5 6 7 8 9 10 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!