Ad

Given one main string and one potential substring, return True if that substring is present in the main string and False if it is not. It is case sensitive

Example:

common_substring("Panda", "and") -> returns True
  
common_substring("PANDA", "and") -> returns False
def common_substring(string, sub_str):
    is_in = False
    
    j = len(sub_str)
    
    for i in range(0, len(string) - j + 1):
        if string[i: i + j] == sub_str:
            is_in = True
            
    return is_in