python遍历列表的方法(三种)

2021-03-29 21:28

阅读:553

标签:pytho   python   迭代   常见   方式   for语句   while   for   方法   

numbers = [1,2,3,4,5] #1.最常见的for迭代器遍历: print("最常见的for迭代器遍历:") for number in numbers: print(number) #2.while遍历,通过索引取值: print("while 遍历:") i = 0 while i

python遍历列表的方法(三种)

标签:pytho   python   迭代   常见   方式   for语句   while   for   方法   

原文地址:https://blog.51cto.com/13560219/2526347


评论


亲,登录后才可以留言!