Contact: aviboots(AT)netvision.net.il
41,215 questions
53,717 answers
573 users
lst1 = [3, 6, 4, 8, 9] lst2 = [4, 8] for l in lst1: if not l in lst2: print(l) ''' run: 3 6 9 '''