what is the use of count function in python

Solutions on MaxInterview for what is the use of count function in python by the best coders in the world

we are a community of more than 2 million smartest coders
registration for
employee referral programs
are now open
get referred to google, amazon, flipkart and more
register now
  
pinned-register now
showing results for - "what is the use of count function in python"
Victor
02 Jul 2019
1count = 0 
2while count < 10 :
3  print("Hello")
4  count += 1