from builtins import len def StringSegmentation(a): b=len(a) c=a[6:b] return c def StringSegmentation_2(a,k): b=len(a) c=a[k:b] return c