编写一个函数,它以一个列表值作为参数,返回一个字符串。该字符串包含所有表项,表项之间以逗号和空格分隔,并在最后一个表项之前插入 and。例如,将前面的 spam 列表传递给函数,将返回'apples, bananas, tofu, and cats'。但你的函数应该能够处理传递给它的任何列表。
代码实现1:
def list_to_str(user_list):
c = user_list[0]
for i in range(1, len(user_list)-1):
a = user_list[i]
c = c+','+a
b = user_list[-1]
c = c+',and '+b
return c
spam = ['apples', 'bananas', 'tofu', 'cats']
d = list_to_str(spam)
print(d)
代码实现2:
def list_to_str(user_list):
a = ','.join(user_list[:-1])
b = user_list[-1]
c = a + ',' + 'and ' +