write the output.
L= [ 2,4,5,6,2,3,4,4,7 ]
count = L count (4)
print ( count )
Answers
Answered by
2
Answer:
3
Explanation:
The count( ) function in python counts the number of times the element is repeated in the list. So, 4 is repeated 3 times so it'll give output as 3.
Similar questions