#使用insert()函数,将指定对象插入列表的指定位置 l = [1, 3, 5, 7] l.insert(3,1) #(index,obj) print(l[1:])