Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #destroy_elements
- list_1 = [1,3,4]
- list_2 = [1,3]
- def destroy_elements(list_1, list_2):
- for list in list_1:
- for lis in list_2:
- print([list for list not in list_2])
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement