Insert a new item in python list Leave a Comment / Python Programs / By brcinstitute111@gmail.com View All Python Programs Source Code thislist = [“keyboard”, “mouse”, “joystick”]print(“Old List”)print(thislist)thislist.insert(2, “scanner”)print(“Updated List”)print(thislist) Output Old List[‘keyboard’, ‘mouse’, ‘joystick’]Updated List[‘keyboard’, ‘mouse’, ‘scanner’, ‘joystick’] View All Python Programs