Remove specific items in python list by using pop() function Leave a Comment / Python Programs / By brcinstitute111@gmail.com View All Python Programs Source Code list1 = [“keyboard”, “mouse”,” joystick”]print(“Old List”)print(list1)list1.pop(1)print(“Updated List”)print(list1) Output Old List[‘keyboard’, ‘mouse’, ‘joystick’]Updated List[‘keyboard’, ‘joystick’] View All Python Programs