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

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

for 循环

result = 'hello,world'for i in result:    print(i)    l = [1,2,3,4,5]for i in l:    print(i)info = {    'name': 'aaa',    'age': 18,    'job': 'it'}for i in info.values(): #默认循环key,加.values()循环values    print(i)t = (1,2,3,4,5)for i in t:    print(i)for i in range(0,10,2):#2是步长    print(i)for i in range(10):    if i == 7:        continue    print(i)

while循环(break,pass)

count = 0while count < 10:    count += 1  # count = count + 1    print('ha-%s' % count)i = 0l = ['a', 'b', 'c', 'd','e']while i < len(l):    if i == 2:        pass    print(l[i])    i += 1while i < len(l):    if i == 2:        break    print(l[i])    i += 1count = 0while True:    print('ha-%s' % count)

break语句

for letter in 'holleworld':        if letter == 'e':      break   print('当前字母 :', letter)

输出e之前的

continue语句

for letter in 'holleworld':    if letter == 'e':      continue   print('当前字母 :', letter)跳过e

pass语句

for letter in 'holleworld':       if letter == 'e':      pass   print('当前字母 :', letter)

 

转载于:https://www.cnblogs.com/wangxudong/p/10058590.html

你可能感兴趣的文章
php做的一个简易爬虫
查看>>
x的x次幂的值为10,求x的近似值
查看>>
在Windows下用MingW 4.5.2编译FFmpeg
查看>>
TTL、RS232、RS485、串口
查看>>
About Me
查看>>
mianshi
查看>>
sql 优化
查看>>
tf.pad(one_hot_encoding, [[0, 0], [1, 0]], mode='CONSTANT')
查看>>
C语言学习笔记-2.数据对象与运算
查看>>
Web前端从入门到精通-11 css简介——盒模型3
查看>>
Web安全基础——小白自学
查看>>
iOS设计模式 - 命令
查看>>
html之表格
查看>>
在线算法学习
查看>>
js 的数组怎么push一个对象. Js数组的操作push,pop,shift,unshift JavaScrip
查看>>
ps快捷键总结
查看>>
javascript的事件处理(一)——基础原理
查看>>
流失预测 & 分类模型(一)[转发自石头]
查看>>
usb driver编写 (转)
查看>>
usb gadge驱动设计之我是zero
查看>>