python中修改列表中的每一项元素

原列表    names = ['Ann', 'Bob', 'Cindy']

新列表   new_names =  ['the great Ann', 'the great Bob', 'the great Cindy']


代码如下:

def make_great(names):
    # 对原列表进行遍历
    while names:
        # 对每一个列表元素进行出栈操作,并在前面添加字符串,并保存在当前变量中
        current_name = 'the Great ' + names.pop() 
        # 把当前变量保存在新列表中
        new_names.append(current_name)
        
    return new_names # 返回新列表

new_names = []
names = ['Ann', 'Bob', 'Cindy']
new_names = make_great(names)



你可能感兴趣的:(python)