python数组去重
时间: 2023-06-21 09:16:29 浏览: 91
在 Python 中,可以使用 set() 函数来去除一个数组中的重复元素。具体实现方法如下:
```python
arr = [1, 2, 3, 3, 4, 4, 5]
new_arr = list(set(arr))
print(new_arr)
```
输出结果为:[1, 2, 3, 4, 5]。其中,set() 函数将一个数组转换为一个集合,集合中的元素不允许重复,最后再将集合转换为列表即可。
相关问题
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 ]
阅读全文