如何修复 "Unindent does not match any outer indentation"
How to fix "Unindent does not match any outer indentation"
我正在制作一个简单的问卷,当我 运行 它时,它说:
File "questionare.py", line 55
score -= 1
^
IndentationError: unindent does not match any outer indentation level
然而,如果我尝试修复它,它会忘记 if
语句并扣分,即使这个人答对了。是Sublime Text的问题,还是我的问题?对于上面的代码,它并没有这样说。
代码如下:
print()
wemsg = print ("Welcome to the most holy questionnaire to exist!")
pointinst = print ("You will get 1 point for each correct question, you will get deducted 1 point with each wrong question!")
# used this video to configure python interpreter: https://www.youtube.com/watch?v=rIl0mmYSPIc
p1 = ("Question 1:")
p2 = ("Question 2:")
p3 = ("Question 3:")
p4 = ("Question 4:")
score = 0 # score worked:
print()
q1 = print(p1)
q1q = input("What is 1+1?: ")
print()
if q1q == ('2'):
print ("Correct!")
score += 1
print ("Total score:", score)
if q1q != ('2'):
print ("Incorrect!")
score -= 1
print ("Total score:", score)
print ("The correct answer is", 1 + 1)
print()
q2 = print(p2)
q2q = input("What is 12 divided by 2 times 5?: ")
print()
if q2q == ('30'):
print ("Correct!")
score += 1
print ("Total score:", score)
if q2q != ('30'):
print ("Incorrect!")
score -= 1
print ("Total score:", score)
print ("The correct answer is", int(12 / 2 * 5))
print()
q3 = print(p3)
q3q = input("What is 2 to the power of 3?: ")
print()
if q3q == ('8'):
print ("Correct!")
score += 1
print ("Total score:", score)
if q3q != ('8'):
print ("Incorrect!")
score -= 1
print ("Total score:", score)
print ("The correct answer is", int(2 ** 3))
print()
q4 = print(p4)
q4q = input("What is (12 x 55) to the power of 6? (Calculator needed): ")
print()
if q4q == ('8.265395e+16'):
print ("Correct, jesus that's a long number.")
score += 1
print ("Total score:", score)
if q4q != ('8.265395e+16'):
print ("Bruh, you are using a Calculator how did you get this wrong.")
score -= 1
print ("Total score:", score)
print ("The correct answer is", int(12 * 55 ** 6))
print()
finish = print ("You have finished the questionnaire with a total score of:", score, "!")
你的代码为我运行并且缩进看起来是正确的。
缩进块中的所有代码行(例如 if
语句)需要具有完全相同的缩进。错误很可能是由于第 55 行混合使用制表符和空格造成的。
您可以尝试删除该行并重新输入,然后 configuring sublime text to display the whitespace。
我正在制作一个简单的问卷,当我 运行 它时,它说:
File "questionare.py", line 55
score -= 1
^
IndentationError: unindent does not match any outer indentation level
然而,如果我尝试修复它,它会忘记 if
语句并扣分,即使这个人答对了。是Sublime Text的问题,还是我的问题?对于上面的代码,它并没有这样说。
代码如下:
print()
wemsg = print ("Welcome to the most holy questionnaire to exist!")
pointinst = print ("You will get 1 point for each correct question, you will get deducted 1 point with each wrong question!")
# used this video to configure python interpreter: https://www.youtube.com/watch?v=rIl0mmYSPIc
p1 = ("Question 1:")
p2 = ("Question 2:")
p3 = ("Question 3:")
p4 = ("Question 4:")
score = 0 # score worked:
print()
q1 = print(p1)
q1q = input("What is 1+1?: ")
print()
if q1q == ('2'):
print ("Correct!")
score += 1
print ("Total score:", score)
if q1q != ('2'):
print ("Incorrect!")
score -= 1
print ("Total score:", score)
print ("The correct answer is", 1 + 1)
print()
q2 = print(p2)
q2q = input("What is 12 divided by 2 times 5?: ")
print()
if q2q == ('30'):
print ("Correct!")
score += 1
print ("Total score:", score)
if q2q != ('30'):
print ("Incorrect!")
score -= 1
print ("Total score:", score)
print ("The correct answer is", int(12 / 2 * 5))
print()
q3 = print(p3)
q3q = input("What is 2 to the power of 3?: ")
print()
if q3q == ('8'):
print ("Correct!")
score += 1
print ("Total score:", score)
if q3q != ('8'):
print ("Incorrect!")
score -= 1
print ("Total score:", score)
print ("The correct answer is", int(2 ** 3))
print()
q4 = print(p4)
q4q = input("What is (12 x 55) to the power of 6? (Calculator needed): ")
print()
if q4q == ('8.265395e+16'):
print ("Correct, jesus that's a long number.")
score += 1
print ("Total score:", score)
if q4q != ('8.265395e+16'):
print ("Bruh, you are using a Calculator how did you get this wrong.")
score -= 1
print ("Total score:", score)
print ("The correct answer is", int(12 * 55 ** 6))
print()
finish = print ("You have finished the questionnaire with a total score of:", score, "!")
你的代码为我运行并且缩进看起来是正确的。
缩进块中的所有代码行(例如 if
语句)需要具有完全相同的缩进。错误很可能是由于第 55 行混合使用制表符和空格造成的。
您可以尝试删除该行并重新输入,然后 configuring sublime text to display the whitespace。