我需要在列表迭代期间插入元素,并按以下方式进行。但是我觉得可以写得更好。这是B的字典,其中包含A元素

_leftcell = leftcell[:]
index = 1
for A in leftcell:
    if B[A].length  % 140 != 0:
        _leftcell.insert(index, 2)
        index +=2
leftcell= _leftcell[:]

最佳答案

反向遍历列表,因此您不必担心列表末尾的更改

left_len = len(leftcell)
for i in xrange(left_len-1,0,-1):
    if B[leftcell[i]].length  % 140 != 0:
        leftcell.insert(i, 2)

10-07 17:20