首页 > 其他 > 详细

Traversal with a for loop

时间:2014-06-23 07:17:52      阅读:371      评论:0      收藏:0      [点我收藏+]

A lot of computations involve processing a string one character at a time. Often they start at the beginning, select each character in turn, do something to it, and continue until the end. The pattern of processing is called traversal. One way to write a traversal is with a while statement:

index = 0
while index < len(fruit):
    letter = fruit[index]
    print letter
    index = index + 1

This loop traverses the string and displays each letter one a line by itself.
Another way to write a traversal is with a for loop:

for char in fruit:
    print char

Each time through the loop, the next character in the string is assigned to the variable char. The loop continues until no characters are left.
The following example shows how to use concatenation (string addition) and a for loop generate an abecedarian series (that is, in alphabetical order).

bubuko.com,布布扣

 

from Thinking in Python

 

 

Traversal with a for loop,布布扣,bubuko.com

Traversal with a for loop

原文:http://www.cnblogs.com/ryansunyu/p/3799591.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!