Answers for "python join string with common string"

-1

python join string with common string

def merge(s1, s2):
    i = 0
    while not s2.startswith(s1[i:]):
        i += 1
    return s1[:i] + s2
Posted by: Guest on May-27-2020

Python Answers by Framework

Browse Popular Code Answers by Language