标签: python slice
如何将列表中的项目移动两个单位?
实施例。将数字'1'向下移动两个单位。
>>> move([1,2,3,4]) [2,3,1,4]
答案 0 :(得分:1)
由于sweeneyrod指出不需要切片:
def move (l, from_, to = 2): return l.insert (to, l.pop (from_) )