当在外部for循环内考虑返回时,如何解决Python代码中的缩进错误? 由 续写呐份情发布于 2020-05-17 23:07:58 python 收藏 def isCollide(data): for i in range(250,345): for j in range(423,460): if data[i,j] <100: return True return False Shows Error :IndentationError: unindent does not match any outer indentation level 评论 请 登录后发表观点 到底啦