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

Buy a domain name - Register cheap domain names from $0.99 - Namecheap

Scalable Hosting That Grows With You

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

Semrush - keyword research tool

Boost your online presence with premium web hosting and servers

Disclosure: My content contains affiliate links.

40,244 questions

52,261 answers

573 users

How to count list elements in Python

1 Answer

0 votes
lst1 = [8, 9, 0, 2, 1, 6]
print("a)", len(lst1))

lst2 = [0] * 30
print("b)",len(lst2))

lst3 = [[1, 2, 3], [4, 5], [6, 7, 8, 9, 10]]
print("c)", len(lst3))

import itertools, collections
countlst3 = collections.Counter(itertools.chain(*lst3))
print("c)", len(countlst3))



'''
run:

a) 6
b) 30
c) 3
c) 10

'''

 



answered Feb 9, 2025 by avibootz
...