amount of items in list python code example
Example 1: python find the number of elements in a list
list1 = [2,3,4,3,10,3,5,6,3]
elm_count = list1.count(3)
print('The count of element: 3 is ', elm_count)
Example 2: python how to count all elements in a list
List = ["Elephant", "Snake", "Penguin"]
print(len(List))
# With the 'len' function Python counts the amount of elements
# in a list (The length of the list).
# In this case the output is '3' because there are 3 elements in the list.
Example 3: number of elements list python
>>> mylist = [1,2,3] #list
>>> len(mylist)
3
>>> word = 'hello' # string
>>> len(word)
5
>>> vals = {'a':1,'b':2} #dictionary
>>> len(vals)
2
>>> tup = (4,5,6) # tuple
>>> len(tup)
3
Example 4: number of elements in list in python
# List of strings
listOfElems = ['Hello', 'Ok', 'is', 'Ok', 'test', 'this', 'is', 'a', 'test']
len(s)