-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstring_names.py
35 lines (26 loc) · 862 Bytes
/
string_names.py
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
33
34
35
"""Given: an array containing hashes of names
Return: a string formatted as a list of names separated by commas
except for the last two names, which should be separated by an ampersand.
Example:
namelist([ {'name': 'Bart'}, {'name': 'Lisa'}, {'name': 'Maggie'} ])
# returns 'Bart, Lisa & Maggie'
namelist([ {'name': 'Bart'}, {'name': 'Lisa'} ])
# returns 'Bart & Lisa'
namelist([ {'name': 'Bart'} ])
# returns 'Bart'
namelist([])
# returns ''
Note: all the hashes are pre-validated and will only contain A-Z, a-z, '-' and '.'.
"""
def namelist(names):
if names:
string = ''
for count, value in enumerate(names):
if count + 1 == len(names):
string += "& " + value
else:
string += value + ', '
return string
else:
return ''
print(namelist([ {'name': 'Bart'}, {'name': 'Lisa'}, {'name': 'Maggie'} ]))