-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathNameList.py
40 lines (29 loc) · 1000 Bytes
/
NameList.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
36
37
38
39
40
'''
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):
result = ''
a = ', '
if len(names) == 1:
return names[0]['name']
if len(names) == 0:
return ''
for i in range(len(names)):
if i == len(names)-1:
result = result + '& ' +str(names[i]['name'])
return result
if i == len(names) -2:
a = ' '
result = result + str(names[i]['name'])+a
print(namelist([]))