Answers for "remove values from a list that are in another list"

4

delete element of a list from another list python

l1 = ["a", "b", "c", "d", "e", "f"]
l2 = ["b", "c", "e"]

l1 = [elt for elt in l1 if elt not in l2]
# l1 = ['a', 'd', 'f']
Posted by: Guest on April-02-2021
0

how to remove items from list in python

python = {
  "year released": 2001,
  "creater":"Guido Van Rossum"
}
python.pop("year released")
print(python)
Posted by: Guest on January-17-2022

Code answers related to "remove values from a list that are in another list"

Python Answers by Framework

Browse Popular Code Answers by Language