gpt4 book ai didi

python - unindent 与任何外部缩进级别不匹配

转载 作者:行者123 更新时间:2023-12-01 05:57:42 29 4
gpt4 key购买 nike

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/

29 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com