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

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

1.while循环

counter = 1while counter <=10 :    counter +=1    print(counter)else:    print('EOF')

2.for循环

# a = ['apple','orange','banana','grape']# for x in a:#     print(x)a = [['apple','orange','banana','grape'],(1,2,3)]for x in a:    for y in x:        if y == 'orange':            break        print(y,end=' ')        # print(y,end='\n')else:    print('fruit is gone')# a = [1,2,3]# for x in a:#     if x == 2:#         break#         # continue#     print(x)# else:#     print('EOF')
# for x in range(0,10):#     print(x)# for x in range(0,10,2):#     print(x,end=' | ')# for x in range(10,0,-2):#     print(x,end=' | ')a = [1,2,3,4,5,6,7,8]# for i in range(0,len(a),2):#     print(a[i],end=' | ')b = a[0:len(a):2]print(b)

 

转载于:https://www.cnblogs.com/zouke1220/p/8855405.html

你可能感兴趣的文章
iOS开发-OC语言 (三)字符串
查看>>
webstorm 格式化代码及常用快捷键
查看>>
Learning-Python【30】:基于UDP协议通信的套接字
查看>>
maven打包添加依赖
查看>>
ECSHOP报错误Deprecated: preg_replace(): The /e modifier is depr
查看>>
几种任务调度的 Java 实现方法与比较
查看>>
Es分析
查看>>
深入解读阿里云数据库POLARDB核心功能物理复制技术
查看>>
游戏害了这一代中国男性
查看>>
不改一行代码定位线上性能问题
查看>>
在64位linux上编译32位程序 for i386 intel
查看>>
animation动画案例
查看>>
《PHP字符串函数》笔记
查看>>
android studio 编译NDK android studio 生成.so文件
查看>>
场景调研
查看>>
DICOM image viewers
查看>>
css清除浮动clearfix:after的用法详解(转)
查看>>
可以在浏览器中在线编辑office文件的扩展程序汇总
查看>>
程序员工资一般多少
查看>>
2018.4.22
查看>>