python 数组去重 set
时间: 2023-11-04 15:55:44 浏览: 128
set()函数是Python内置函数中比较基础的一个,用于创建一个无序不重复元素集。它可以进行关系测试、删除重复数据,并且可以计算交集、差集、并集等操作。你可以将一个列表作为set()函数的参数,然后调用set()函数来对列表进行去重操作。例如,对于列表li1=['a','b','c','d','a','b'],可以使用set()函数对其进行去重,得到的结果为{'b', 'd', 'c', 'a'}。
如果你想保持去重后的元素顺序不变,可以使用sort()函数按原来的顺序重新排序。例如,对于列表li1=['a','b','c','d','a','b'],可以先使用set()函数进行去重,然后将set类型转换为list类型,最后使用sort()函数按照原来的序列对list进行排序,即可保持去重后的顺序。应用以上方法,对于列表li1=['a','b','c','d','a','b'],可以得到['a', 'b', 'c', 'd']。
相关问题
Python数组去重
在 Python 中,数组(列表)去重有多种方法。以下是几种常见的去重方式:
1. 列表推导式:
```python
def remove_duplicates(input_list):
return list(set(input_list))
# 示例
input_array = [1, 2, 2, 3, 3, 3]
unique_array = remove_duplicates(input_array)
print(unique_array) # 输出: [1, 2, 3]
```
2. 使用 `dict`(字典):
字典的键是唯一的,所以可以把列表元素作为字典的值来去除重复。
```python
def remove_duplicates_dict(input_list):
return list(dict.fromkeys(input_list))
# 示例
input_array = [1, 2, 2, 3, 3, 3]
unique_array = remove_duplicates_dict(input_array)
print(unique_array) # 输出: [1, 2, 3]
```
3. 使用 `set`(集合):
集合也是不允许重复元素的,可以先转换为集合再转换回列表。
```python
def remove_duplicates_set(input_list):
return list(set(input_list))
# 示例
input_array = [1, 2, 2, 3, 3, 3]
unique_array = remove_duplicates_set(input_array)
print(unique_array)
python 数组 去重
在Python中,数组去重可以使用多种方法实现。其中,引用中的方法使用了一个空列表s,遍历原数组arr,如果当前元素不在s中,就将其添加到s中,最后返回s即可实现去重。引用[2]中的方法使用了set数据结构,将原数组arr转换为set,然后再转换回列表即可实现去重。而引用中的方法是针对有序数组的情况,通过双指针的方式,将重复的元素覆盖掉,最后返回去重后的数组长度。根据不同的需求和数组类型,可以选择不同的方法来实现去重操作。<span class="em">1</span><span class="em">2</span><span class="em">3</span>
#### 引用[.reference_title]
- *1* *2* *3* [数组去重大全(python)](https://blog.csdn.net/weixin_38730719/article/details/97392038)[target="_blank" data-report-click={"spm":"1018.2226.3001.9630","extra":{"utm_source":"vip_chatgpt_common_search_pc_result","utm_medium":"distribute.pc_search_result.none-task-cask-2~all~insert_cask~default-1-null.142^v93^chatsearchT3_2"}}] [.reference_item style="max-width: 100%"]
[ .reference_list ]
阅读全文