我遇到了一些问题,当我运行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))
答案 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))