def getName(srcStr):
a=srcStr.split("the name is ")[1].split(",")[0]
return a
b='A old lady come in, the name is limaol, level 94454'
print(getName(b))
def getName(srcStr):
a=srcStr.split("the name is ")[1].split(",")[0]
return a
b='A old lady come in, the name is limaol, level 94454'
print(getName(b))