python 函数 列表去重函数实现

2022/1/8 14:03:39

本文主要是介绍python 函数 列表去重函数实现,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

列表去重函数
定义一个函数 def remove_element(a_list):
将列表[10, 1, 2, 20, 10, 3, 2, 1, 15, 20, 44, 56, 3, 2, 1]
去除重复元素(不能用集合去重,要使用for循环)。

def remove_repeatitive_elements(a_list):
...
函数调用:
my_list = [10, 1, 2, 20, 10, 3, 2, 1, 15, 20, 44, 56, 3, 2, 1]
remove_repeatitive_elements(my_list)

注意点:1、函数内部应该放不会改变的内容,函数外要放会改变的内容

2、使用列表append追加的方法

#准备一个空列表 ,两个列表进行比较 如果列表对象在new_list里面就删除,不在就放进去

my_list = [10, 1, 2, 20, 10, 3, 2, 1, 15, 20, 44, 56, 3, 2, 1]
new_list = []    #定义一个新列表
for item in my_list:           #item为my_list中的元素
    if item not in new_list:   #如果item不在new_list中,进行追加
        new_list.append(item)   #append 列表追加
print(new_list)

###定义函数

def remove_elements(a_list):
    pass

    new_list = []
    for item in a_list:
        if item not in new_list:
            new_list.append(item)   
    print(new_list)

# my_list = [10, 1, 2, 20, 10, 3, 2, 1, 15, 20, 44, 56, 3, 2, 1]
# remove_elements(my_list)#调用函数
m2323_list = [11,4,5,22,2,22,44,4,11,55,5]
remove_elements(m2323_list)


这篇关于python 函数 列表去重函数实现的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!


扫一扫关注最新编程教程