Contact: aviboots(AT)netvision.net.il
40,772 questions
53,159 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 '''