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