- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
Possible Duplicate:
IndentationError: unindent does not match any outer indentation level
我编写了以下 python 代码,但我看不到问题的原因是什么,但我收到以下错误消息:
定义帖子( self ): ^IndentationError:取消缩进与任何外部缩进级别不匹配
class MainHandler(webapp2.RequestHandler):
def get(self):
self.response.out.write(form)
def post(self):
self.response.out.write("valid")
app = webapp2.WSGIApplication([('/', MainHandler)],debug=True)
任何帮助将不胜感激
最佳答案
您的代码示例充满了制表符。如果将制表符与空格混合使用,则错误几乎是必然的。
使用python tabnanny
要清理源代码,请将编辑器切换为仅使用空格,然后修复缩进:
python -m tabnanny -v path/to/your/code.py
关于python - unindent 与任何外部缩进级别不匹配,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11757380/
这个问题已经有答案了: 已关闭10 年前。 Possible Duplicate: IndentationError: unindent does not match any outer indent
在第 51/52 行,我收到错误: Unindent does not match any outer indentation level. 我知道这与制表符和空格有关。 注意我没有写这段代码,I f
这个问题在这里已经有了答案: 关闭 10 年前。 Possible Duplicate: IndentationError: unindent does not match any outer in
这个问题在这里已经有了答案: IndentationError: unindent does not match any outer indentation level (31 个答案) 关闭 2
IndentationError: unindent WHY??? #!/usr/bin/python import sys class Seq: def __init__(self, id,
PyCharm 中的错误: File "Biblio.py", line 96 else: ^ IndentationError: unexpected unindent 今天我添加了
下面的代码真的让我很烦 我已经查看了 stackoverflow 和谷歌但没有找到任何东西而且我是一个非常好的 pyton 程序员并且到目前为止还没有发现我无法处理的错误.我已经尝试了所有方法,但这种
错误: unindent does not match any outer indentation level 代码: def confirmation(self): if WebDriver
我正在阅读的书建议我使用函数、while 和 if 编写一个程序。 该计划的目的是: Take 4 numbers from the user, 2 will be summed, 2 will be
这是完整的代码 from itertools import imap import threading import time import hashlib import sys __b58chars
我正在做一个简单的调查问卷,当我运行它时,它说: File "questionare.py", line 55 score -= 1 ^ IndentationE
今天在网上copy的一段代码,代码很简单,每行看起来该缩进的都缩进了,运行的时候出现了如下错误: 【解决过程】 1.对于此错误,最常见的原因是,的确没有缩进。根据错误
在while not语句中else后面的任何内容都有缩进问题,并且我确定它是因为我格式错误。写这个的正确方法是什么? 我试图四处走动,但无法弄清楚 valid_data =假 while not va
当我编译下面的 Python 代码时,我得到了 IndentationError: unindent does not match any outer indentation level import
这个问题在这里已经有了答案: Why am I getting "IndentationError: expected an indented block"? [duplicate] (6 个答案)
我正在为文本编辑器创建一个不缩进算法。我已经设法获得要操作的范围,但是当我想执行 Gtk::TextBuffer::erase 时,它失败了: void unindentSelection(con
当我编译下面的 Python 代码时,我得到了 IndentationError: unindent does not match any outer indentation level import
我是Python的初学者。我正在尝试运行以下代码来替换.txt批注文件中的某些标签。 import os for txt_in in os.listdir(r"uncorrected-YOLO_dar
是否有人拥有或知道了解如何缩进/取消缩进并能够设置缩进级别的控制台 TextWriter。 最佳答案 System.CodeDom.Compiler.IndentedTextWriter 这是内置于
你好,这是我的 python 代码: def is_palindrome(nombre): if str(nombre) == str(nombre)[::-1]: retur
我是一名优秀的程序员,十分优秀!