count python function code example
Example 1: count in python
it counts the number of elements in the list or in the string(words)
Example 2: what is the use of count function in python
count = 0
while count < 10 :
print("Hello")
count += 1