栏目分类:
子分类:
返回
名师互学网用户登录
快速导航关闭
当前搜索
当前分类
子分类
实用工具
热门搜索
名师互学网 > IT > 软件开发 > 后端开发 > Python

云学编程的第13天—【微软官方python入门教程 P27-P28笔记】2021-11-13 循环Loops

Python 更新时间: 发布时间: IT归档 最新发布 模块sitemap 名妆网 法律咨询 聚返吧 英语巴士网 伯小乐 网商动力

云学编程的第13天—【微软官方python入门教程 P27-P28笔记】2021-11-13 循环Loops

P27Loops

 

Loop through a collection

for name in ['christopher','susan',str(10),int(1000),float(1)]:
    print(name)

how do i then loop x number of times? The way you do that is by using a built-in little function called range. range will do for you is it will automatically create a list of numbers for you. 

Looping a number of times

for index in range(1,6):
    print(index)

 Looping with a condition

a = input('what you want to do ?')
name = ['na','bi','ss',a]
index = 1
while index < len(name):
    print(name[index]) 
    index = index + 1 #change the condition!!

 Typically you would want to use a while loop in situations where something is going to change automatically. So if I was maybe reading through a list of lines, inside of a file or someting like that, that's perfect for a while loop.

 

P28实操

people = ['Christopher','Susan']
for name in people:
    print(name)
print()
index = 0
while index < len(people):
    print(people[index])
    index = index + 1

 Python While 循环语句 | 菜鸟教程 GIF动图讲解while

转载请注明:文章转载自 www.mshxw.com
本文地址:https://www.mshxw.com/it/488708.html
我们一直用心在做
关于我们 文章归档 网站地图 联系我们

版权所有 (c)2021-2022 MSHXW.COM

ICP备案号:晋ICP备2021003244-6号