-2

如何将列表中的项目向下移动两个单位?

前任。将数字“1”向下移动两个单位。

>>> move([1,2,3,4])
[2,3,1,4]
4

1 回答 1

1

正如 sweeneyrod 指出的不需要切片:

def move (l, from_, to = 2):
    return l.insert (to, l.pop (from_) )
于 2013-10-16T18:43:06.827 回答