博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
python循环
阅读量:4974 次
发布时间:2019-06-12

本文共 868 字,大约阅读时间需要 2 分钟。

一、while

1、while

i = 1while i < 10:       i += 1    if i%2 > 0:     # 非双数时跳过输出        continue    print i         # 输出双数2、4、6、8、10 i = 1while 1:            # 循环条件为1必定成立    print i         # 输出1~10    i += 1    if i > 10:     # 当i大于10时跳出循环        break

2、while else

count = 0while count < 5:   print count, " is  less than 5"   count = count + 1else:   print count, " is not less than 5"

二、for

fruits = ['banana', 'apple',  'mango']for index in range(len(fruits)):   print '当前水果 :', fruits[index] 使用内置 enumerate 函数进行遍历
sequence = [12, 34, 34, 23, 45, 76, 89] for i, j in enumerate(sequence): print i,j 0 12 1 34 2 34 3 23 4 45 5 76 6 89

三、pass语句

1、pass是空语句,是为了保持程序结构的完整性。

2、pass 不做任何事情,一般用做占位语句。

for letter in 'Python':   if letter == 'h':      pass      print '这是 pass 块'   print '当前字母 :', letterprint "Good bye!"

  

转载于:https://www.cnblogs.com/detanx/p/pythonFool.html

你可能感兴趣的文章
java_线程的开启与结束(可用于android)
查看>>
二分图判定 hdu5285 wyh2000 and pupil
查看>>
阿里云服务器出现入侵事件:挖矿进程
查看>>
VS 2013 配置份openGL环境
查看>>
修改 CKEditor 超链接的默认协议
查看>>
zoj3795 Grouping --- 良好的沟通,寻找最长的公路
查看>>
【SSH2(理论+实践)】--Hibernate步步(一个)
查看>>
深入浅出JMS(一)——JMS简要
查看>>
JDBC连接MySQL数据库及演示样例
查看>>
小波说雨燕 第三季 构建 swift UI 之 UI组件集-视图集(四)Alert View视图 学习笔记...
查看>>
多线程基础(二)pthread的了解
查看>>
百度SDK的使用第一天
查看>>
python学习笔记3:列表、元组和集合
查看>>
数组的初始化
查看>>
bzoj3156 防御准备
查看>>
Git----查看提交日志
查看>>
XE7/X10.2 Datasnap使用 dbExpress 连接MySQL数据库
查看>>
Eclipse修改编码格式
查看>>
生成器和协程 —— 你想知道的都在这里了
查看>>
初级算法-6.两个数组的交集 II
查看>>