请大家帮帮忙! 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)为什么会这样????
- 2 回答
- 0 关注
- 316 浏览
添加回答
举报
0/150
提交
取消