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

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

云学编程的第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

欢迎分享,转载请注明来源:内存溢出

原文地址:https://54852.com/zaji/5480837.html

(0)
打赏 微信扫一扫微信扫一扫 支付宝扫一扫支付宝扫一扫
上一篇 2022-12-12
下一篇2022-12-12

发表评论

登录后才能评论

评论列表(0条)

    保存