Update tests : deliverable

This commit is contained in:
Freezed 2020-07-16 09:26:15 +02:00
parent fbdc3815e7
commit 5471f30e97
1 changed files with 4 additions and 2 deletions

View File

@ -17,8 +17,10 @@ def main(string, n, sep):
:Tests:
>>> main("ab c de fgh ijk", 2, "|")
'ab|cd|ef|gh|ij|k'
>>> main("ab c de fgh ijk", 3, "|")
'abc|def|ghi|jk'
>>> main("ab c de fgh ijk", 3, "_")
'abc_def_ghi_jk'
>>> main("ab c de fgh ijk", 4, "/")
'abcd/efgh/ijk'
"""
strings = list()