#remove a sublist from a list-use remove method l1 = [10,20,30,40,50,60] s1 = [30,40,50] for i in s1: l1.remove(i) print(l1)