签到成功

知道了

CNDBA社区CNDBA社区

Python 基础教程系列(十)--For循环语句

2017-04-07 16:44 1568 0 转载 python开发
作者: Expect-乐

Python for循环可以遍历任何序列的项目,如一个列表或者一个字符串。

语法:

http://www.cndba.cn/Expect-le/article/1848

for循环的语法格式如下:http://www.cndba.cn/Expect-le/article/1848

for iterating_var in sequence:

   statements(s)

流程图:


实例:

http://www.cndba.cn/Expect-le/article/1848

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

以上实例输出结果:

http://www.cndba.cn/Expect-le/article/1848
http://www.cndba.cn/Expect-le/article/1848

当前字母 : P

当前字母 : y

当前字母 : t

当前字母 : h

当前字母 : o

当前字母 : n

当前水果 : banana

当前水果 : apple

当前水果 : mango

Good bye!

http://www.cndba.cn/Expect-le/article/1848
http://www.cndba.cn/Expect-le/article/1848

通过序列索引迭代

另外一种执行循环的遍历方式是通过索引,如下实例:

实例

#!/usr/bin/python

# -*- coding: UTF-8 -*-

 

fruits = ['banana', 'apple',  'mango']

for index in range(len(fruits)):

   print '当前水果 :', fruits[index]

 

print "Good bye!"

以上实例输出结果:

当前水果 : banana

当前水果 : apple

当前水果 : mango

Good bye!

以上实例我们使用了内置函数 len() range(),函数 len() 返回列表的长度,即元素的个数。 range返回一个序列的数。

循环使用 else 语句

python 中,for else 表示这样的意思,for 中的语句和普通的没有区别,else 中的语句会在循环正常执行完(即 for 不是通过 break 跳出而中断的)的情况下执行,while else 也是一样。

实例

http://www.cndba.cn/Expect-le/article/1848

#!/usr/bin/python

# -*- coding: UTF-8 -*-

for num in range(10,20):  # 迭代 10 到 20 之间的数字

   for i in range(2,num): # 根据因子迭代

      if num%i == 0:      # 确定第一个因子

         j=num/i          # 计算第二个因子

         print '%d 等于 %d * %d' % (num,i,j)

         break            # 跳出当前循环

   else:                  # 循环的 else 部分

      print num, '是一个质数'

以上实例输出结果:

http://www.cndba.cn/Expect-le/article/1848

10 等于 2 * 5

11 是一个质数

12 等于 2 * 6

13 是一个质数

14 等于 2 * 7

15 等于 3 * 5

16 等于 2 * 8

17 是一个质数

18 等于 2 * 9

19 是一个质数

http://www.cndba.cn/Expect-le/article/1848

python For循环语句

用户评论
* 以下用户言论只代表其个人观点,不代表CNDBA社区的观点或立场
Expect-乐

Expect-乐

关注

Without the continuous bitter cold, there can be no fragrant plum blossom

  • 336
    原创
  • 6
    翻译
  • 100
    转载
  • 41
    评论
  • 访问:1567339次
  • 积分:1957
  • 等级:核心会员
  • 排名:第4名
精华文章
    最新问题
    查看更多+
    热门文章
      热门用户
      推荐用户
        Copyright © 2016 All Rights Reserved. Powered by CNDBA · 皖ICP备2022006297号-1·

        QQ交流群

        注册联系QQ