程式語言提供了各種控制結構,允許更複雜的執行路徑。循環語句允許我們執行一個語句或語句組多次
Python 循環語句 語法
Python提供了for迴圈和while迴圈(在Python中沒有do..while迴圈)
Python 循環語句 範例
while循環語句
#!/usr/bin/python count = 0while (count < 9): print 'The count is:', count count = count + 1 print "Good bye!"
for 循環語句
#!/usr/ bin/python# -*- coding: UTF-8 -*- for letter in 'Python': # 第一個實例 print '當前字母 :', letter fruits = ['banana', 'apple', 'mango']for fruit in fruits: # 第二個實例 print '當前水果 :', fruit print "Good bye!"