Insert items in python list by using append() function 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.append(“scanner”)print(“Updated List”)print(thislist) Output Old List[‘keyboard’, ‘mouse’, ‘joystick’]Updated List[‘keyboard’, ‘mouse’, ‘joystick’, ‘scanner’] View All Python Programs