python创建列表两种方法_python创建列表的方法

Q4:你知道在Python里面列表去重有几种方法吗?

1. 使用set

list2 = list(set(list1))

print(list2)

2. 使用循环+判断

for i in list1:

if i not in list2:

list2.append(i)

print(list2)

3. 使用Counter

from collections import Counter

counter = Counter(list1)

list2 = list(counter.keys())

print(list2)

4. 使用defaultdict

from collections import defaultdict

dict_tmp = defaultdict(int)

for i in list1:

dict_tmp[i] += 1

list2 = list(dict_tmp.keys())

print(list2)

5. 使用pandas

import pandas as pd

se = pd.Series(list1)

list2 = list(se.unique())

list3 = list(se.drop_duplicates())

print(list2)

print(list3)

6. 使用numpy

import numpy as np

list2 = list(np.unique(list1))

print(list2)

Python有许多库对去重有支持,可以看情况进行选择。还有很多其他的去重方法,这里就不再列出来了。

WWw.ZdyaN.C∽OM

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值