請大家幫幫忙! 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)為什么會這樣????
python 3.1中關于while循環函數使用的問題
一只甜甜圈
2018-07-17 15:05:30