首頁  >  文章  >  後端開發  >  python怎麼用for循環

python怎麼用for循環

藏色散人
藏色散人原創
2019-10-25 10:48:456697瀏覽

python怎麼用for循環

python怎麼用for迴圈?

Python for迴圈可以遍歷任何序列的項目,如一個列表或一個字串。

for迴圈的語法格式如下:

for iterating_var in sequence:
   statements(s)

實例

#!/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!"

以上實例輸出結果:

当前字母 : P
当前字母 : y
当前字母 : t
当前字母 : h
当前字母 : o
当前字母 : n
当前水果 : banana
当前水果 : apple
当前水果 : mango
Good bye!

推薦:《python教學

以上是python怎麼用for循環的詳細內容。更多資訊請關注PHP中文網其他相關文章!

陳述:
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn