Please clearify this concept.
I'm trying to remove the element of one list from another list but getting this error list.remove(x): x not in list
here is an example of simplicity that im trying to do. although im using a list of strings.Click here to see Screenshot
list1 = [1,2,3,4,5,6,7,8,9,10]
list2 = [1,2,3,6,8]
list1.remove(i for i in list2)