Python 关于列表的一个问题

2024-12-28 21:05:10
推荐回答(1个)
回答1:

a = [1,2,3,4,5,6,7]
for i,each in enumerate(a[:4]):
    print i,each