请大家帮帮忙!
while True:
reply=input("enter text:")
if reply=="stop":
break
elif not reply.isdigit():
print("bad!"*8)
else:
num=int(reply)
if num<20:
print("low")
else:
print(num**2)
print("bye")
在运行程序时,在第一行(while True)打印出一下语句。语法缩进正常!
SyntaxError: unindent does not match any outer indentation level (<pyshell#31>, line 13)
为什么会这样????
慕森王
慕森卡