+ 3
Not totally sure what you are asking. Hopefully this helps. lst = [1, 2, 3, 5] lst.insert(3, 4) print(lst) outputs: [1, 2, 3, 4, 5]
21st Jan 2018, 12:39 AM
John Wells
John Wells - avatar