forked from TheAlgorithms/Python
- Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathjoin.py
More file actions
Latest commit
32 lines (27 loc) · 816 Bytes
/
Copy pathjoin.py
File metadata and controls
32 lines (27 loc) · 816 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
"""
Program to join a list of strings with a given separator
"""
defjoin(separator: str, separated: list[str]) ->str:
"""
>>> join("", ["a", "b", "c", "d"])
'abcd'
>>> join("#", ["a", "b", "c", "d"])
'a#b#c#d'
>>> join("#", "a")
'a'
>>> join(" ", ["You", "are", "amazing!"])
'You are amazing!'
>>> join("#", ["a", "b", "c", 1])
Traceback (most recent call last):
...
Exception: join() accepts only strings to be joined
"""
joined=""
forword_or_phraseinseparated:
ifnotisinstance(word_or_phrase, str):
raiseException("join() accepts only strings to be joined")
joined+=word_or_phrase+separator
returnjoined.strip(separator)
if__name__=="__main__":
fromdoctestimporttestmod
testmod()