[Solved] How to remove a list of elements from a list? December 7, 2022 by Kirat Using a list comprehension: A = [x for x in A if x not in B] 3 solved How to remove a list of elements from a list?