首页 > 代码库 > 出乎意料的else语句

出乎意料的else语句

在python中你可能时不时不碰到else语句用在while和for循环中,请不要吃惊,先看看它的作用吧!
实际上在循环语句中,else子句仅仅会在循环完毕后运行。即跳出循环的操作。如break,同一时候也会跳过
else块。
以下是一个来自python核心编程的样例

def showMaxFactor(num):
    count = num/2
    while count > 1:
        if num%count == 0:
            print ‘largest factor of %d is %d‘ % (num,count)
            break
        count -= 1
    else:
        print num, "is prime"

for eachNum in range(10,21):
    showMaxFactor(eachNum)
<script type="text/javascript"> $(function () { $(‘pre.prettyprint code‘).each(function () { var lines = $(this).text().split(‘\n‘).length; var $numbering = $(‘
    ‘).addClass(‘pre-numbering‘).hide(); $(this).addClass(‘has-numbering‘).parent().append($numbering); for (i = 1; i <= lines; i++) { $numbering.append($(‘
  • ‘).text(i)); }; $numbering.fadeIn(1700); }); }); </script>

出乎意料的else语句