We have a list containing lists like so:
My_list = [ [1,2,3],[4,5,6],[7,8,9],[1,2,3] ]
Is there an easy way to learn that the list item [1,2,3]
appears twice in My_list
? I am not interested in the individual numbers but i am interested in them as a list.