Posts by Moreira • 1 point
1 post
-
-2
votes1
answer48
viewsQ: I need help analyzing a list and printing which elements repeat equally in the list. PYTHON
Serv = [0,1,1,0,9,7] The most repeated items on the list are 0 and 1, but I couldn’t think of anything I could do to get this. I tried to fix the first element,: sound = [2,2,2,2,1,1] and definitely…