欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

Python 遍历数组的方法

程序员文章站 2022-07-15 08:21:30
...

1 使用for in 

people = ["李白","杜甫","我"]
for peo in people:  
                print(peo) 

2  使用range

people = ["李白","杜甫","我"] 
for i in range(0, len(people)):  
    print(people[i])