Skip to content

Commit 00165a5

Browse files
Added test cases to join.py (TheAlgorithms#10629)
* Added test cases to join.py * [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci --------- Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
1 parent b5786c8 commit 00165a5

File tree

1 file changed

+25
-3
lines changed

1 file changed

+25
-3
lines changed

strings/join.py

+25-3
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,21 @@
11
"""
2-
Program to join a list of strings with a given separator
2+
Program to join a list of strings with a separator
33
"""
44

55

66
def join(separator: str, separated: list[str]) -> str:
77
"""
8+
Joins a list of strings using a separator
9+
and returns the result.
10+
11+
:param separator: Separator to be used
12+
for joining the strings.
13+
:param separated: List of strings to be joined.
14+
15+
:return: Joined string with the specified separator.
16+
17+
Examples:
18+
819
>>> join("", ["a", "b", "c", "d"])
920
'abcd'
1021
>>> join("#", ["a", "b", "c", "d"])
@@ -13,16 +24,27 @@ def join(separator: str, separated: list[str]) -> str:
1324
'a'
1425
>>> join(" ", ["You", "are", "amazing!"])
1526
'You are amazing!'
27+
28+
This example should raise an
29+
exception for non-string elements:
1630
>>> join("#", ["a", "b", "c", 1])
1731
Traceback (most recent call last):
1832
...
19-
Exception: join() accepts only strings to be joined
33+
Exception: join() accepts only strings
34+
35+
Additional test case with a different separator:
36+
>>> join("-", ["apple", "banana", "cherry"])
37+
'apple-banana-cherry'
2038
"""
39+
2140
joined = ""
2241
for word_or_phrase in separated:
2342
if not isinstance(word_or_phrase, str):
24-
raise Exception("join() accepts only strings to be joined")
43+
raise Exception("join() accepts only strings")
2544
joined += word_or_phrase + separator
45+
46+
# Remove the trailing separator
47+
# by stripping it from the result
2648
return joined.strip(separator)
2749

2850

0 commit comments

Comments
 (0)