from builtins import len
#用于Settings和Administrator关键字对字符串的切割
def StringSegmentation(a,k):
b=len(a)
c=a[k:b]
return c