This repository has been archived on 2025-09-14. You can view files and clone it, but cannot push or open issues or pull requests.
Files
dongxiaoyan-tsg-autotest/04-CustomLibrary/Custometest/StringManipulation.py

11 lines
144 B
Python

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