6 lines
82 B
Python
6 lines
82 B
Python
from builtins import len
|
|
|
|
def StringSegmentation(a):
|
|
b=len(a)
|
|
c=a[6:b]
|
|
return c |