Posts by Mister.Python • 1 point
1 post
-
0
votes3
answers3331
viewsQ: Return the amount of elements repeated in a list
Could you help me with a question? How do I return the amount of elements that repeat in a list in python? For example: A list=[4,2,1,6,1,4,4] must return the value 2, because there are two elements…