Welcome to collectivesolver - Programming & Software Q&A with code examples. A website with trusted programming answers. All programs are tested and work.

Contact: aviboots(AT)netvision.net.il

Semrush - keyword research tool

Create your online store today with Shopify

Turn ChatGPT, Claude, Gemini, And CoPilot Into Your Personal Assistant, Business Coach, Content Creator, And More

AFFILIATE MARKETING Your all-in-one performance engine Manage affiliates, creators, and customer referrals in one unified platform—turning every partnership into measurable growth

Secure & Reliable Web Hosting, Free Domain, Free SSL, 1-Click WordPress Install, Expert 24/7 Support

Disclosure: My content contains affiliate links.

43,239 questions

56,142 answers

573 users

How to count all duplicate elements in a list using Python

1 Answer

0 votes
import collections

lst = [1, 1, 2, 3, 4, 4, 4, 5, 6, 6, 7, 7, 7, 7]

count_elements = {i:lst.count(i) for i in lst}

for key, value in count_elements.items():
  if (value > 1):
    print(key, " : ", value)


'''
run:

1  :  2
4  :  3
6  :  2
7  :  4

'''

 



answered Feb 18, 2019 by avibootz

Related questions

3 answers 315 views
1 answer 209 views
1 answer 203 views
1 answer 184 views
1 answer 249 views
2 answers 294 views
...