Possible Duplicate:
IndentationError: unindent does not match any outer indentation level取消縮進不符合任何外部的縮進級別
我寫了下面的Python代碼,但我看不出有什麼問題的原因,但我得到了以下錯誤消息:
高清張貼(個體經營): ^ 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)
任何幫助將不勝感激
非常感謝我設法解決這個問題,我是混合選項卡和空格 – 2012-08-01 10:49:15
@FrancisTchatchoua:如果答案對你有幫助,你會介意將其標記爲已接受嗎?請參閱[如何接受答案?](http://meta.stackexchange.com/q/5234) – 2012-08-01 10:50:46