私は自分自身をPythonで始めるために数学クイズを作成しています。私はその言語を初めて使い慣れているので、インデントが一致しません外側インデントレベルエラーメッセージ?誰かが私にこのことがどういう意味で、どこに私の間違いがあるのかを教えてもらえますか私の数学のゲームではインデントが外側のインデントレベルと一致しません
は、ここに私のコードです:
import random
questions = 0
correct = 0
print ("Welcome to the maths challenge")
print ("Out of these 10 questions how many can you get right?")
while True :
questions += 1
numberA = random.randint(0,12)
question = "What is {0}**2".format(numberA)
print(question)
response = input("Your Answer : ")
answer = numberA**2
if(int(response) == answer) :
print("Correct!")
else :
print("Wrong!")
if(questions == 10) :
print("You got {0}/{1} questions correct.").format(correct, questions)
if correct == ("5>")
print ("Better luck next time")
if correct == ("5<")
print ("You got a great score Well done!")
break
エラーはその行にあります。 –