while-loop if-statement 问答列表

Python while 语句上的 Else 子句

作者:Ivan 提问时间:7/21/2010

我注意到以下代码在 Python 中是合法的。我的问题是为什么?有具体原因吗? n = 5 while n != 0: print n n -= 1 else: print "what the...


共1条 当前第1页