python code to find common parts in 2 strings code example
Example: find common string in two strings python
for i in str1:
if i in str2:
return "TRUE"
for i in str1:
if i in str2:
return "TRUE"