gpt4 book ai didi

python - 如何在python中按顺序从多个列表中删除重复记录

转载 作者:太空宇宙 更新时间:2023-11-04 10:05:40 25 4
gpt4 key购买 nike

<分区>

我有三个列表,每个列表有四个值,我必须从这三个列表中删除重复的值

这是三个列表

country_list = ['USA', 'India', 'China', 'India']
city_list = ['New York', 'New Delhi', 'Beijing', 'New Delhi']
event_list = ['First Event', 'Second Event', 'Third Event', 'Second Event']

因为它在所有三个列表中显示“India”、“new delhi”和“Second event”正在重复,这意味着它们再次相互重复。我想删除这些重复值,并希望结果如下

country_list = ['USA', 'India', 'China']
city_list = ['New York', 'New Delhi', 'Beijing']
event_list = ['First Event', 'Second Event', 'Third Event']

那么我怎样才能得到这个结果呢?有什么函数吗?

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com