问题IndentationError:unindent与任何外部缩进级别都不匹配

时间:2019-08-19 13:32:18

标签: python

我遇到了一些问题,当我运行py -tt first_ai.py时出现了这样的消息:

File "first_ai.py", line 41
    NN = Neural_Network()
                        ^
IndentationError: unindent does not match any outer indentation level

我的部分代码是:

NN = Neural_Network()

   o = NN.forward(X)

   print("Sorti predit par l'IA : \n" + str(o))
   print("Vrai sorti : \n" str(y))

1 个答案:

答案 0 :(得分:1)

为什么NN = Neural_Network()之后的源代码缩进了?没有理由这样做。

NN = Neural_Network()

o = NN.forward(X)

print("Sorti predit par l'IA : \n" + str(o))
print("Vrai sorti : \n" str(y))