li = ['a', 'b', 'c', 'd']
==> for i, j in enumerate(li):
print('序号:%d' % i , '值:%s' % j)
==>序号:0 值:a
序号:1 值:b
序号:2 值:c
序号:3 值:d