1.新增Login RestrictionsCase 测试用例 2.修改关键字 3.新增Audit Logs测试用例 4.新增字符串分割方法
This commit is contained in:
@@ -3,4 +3,9 @@ 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
|
||||
Reference in New Issue
Block a user