summaryrefslogtreecommitdiff
path: root/progs/a535.py
blob: f72fd654c3ba4a7fb6bb5276d905954826de193e (plain)
1
2
3
4
5
6
def count_occurance(s):
  count=0
  for i in range(len(s)):
    if (s[i]== 's' and s[i+1]=='t' and s[i+2]== 'd'):
      count = count + 1
  return count