Python for迴圈可以遍歷任何序列的項目,如一個清單或一個字串。
語法:(推薦學習:Python影片教學)
for迴圈的語法格式如下:
for iterating_var in sequence: statements(s)
python可以使用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!"
以上實例輸出結果:
当前字母 : P 当前字母 : y 当前字母 : t 当前字母 : h 当前字母 : o 当前字母 : n 当前水果 : banana 当前水果 : apple 当前水果 : mango Good bye!
更多Python相關技術文章,請造訪Python教學欄位進行學習!
以上是怎麼輸出單字的字母的詳細內容。更多資訊請關注PHP中文網其他相關文章!