python programme.
Posted
by siva
on Stack Overflow
See other posts from Stack Overflow
or by siva
Published on 2010-06-17T09:19:30Z
Indexed on
2010/06/17
9:23 UTC
Read the original article
Hit count: 307
hi, i am siva this is frist time taken the python programming language i have a small problem please help me the question is **Write two functions, called countSubStringMatch and countSubStringMatchRecursive that take two arguments, a key string and a target string. These functions iteratively and recursively count the number of instances of the key in the target string. You should complete definitions for
def countSubStringMatch(target,key):
and
def countSubStringMatchRecursive (target, key):
**
© Stack Overflow or respective owner