Contact: aviboots(AT)netvision.net.il
41,606 questions
54,269 answers
573 users
lst1 = [1, 2, 3, 5] lst2 = [1, 2, 3, 5] if lst1 == lst2: print("The same") else : print("Nor the same") ''' run: The same '''