• python学习--快速找到多个字典中的公共key


    首先先生成几个字典dict。随机生成一个字典,字典的key和value都是随机的。

    from random import randint,sample
    sample('abcdef',3)  随机取样函数,第二个参数代表取样的个数。

    {x:randint(1,4) for x in sample('abcdefg',randint(3,6))}   解释:随机生成一个3-6个元素的dict,集合的值在1-4之间

    1.最菜的方法

    s1={x:randint(1,4) for x in sample('abcdefg',randint(3,6))}
    s2={x:randint(1,4) for x in sample('abcdefg',randint(3,6))}
    s3={x:randint(1,4) for x in sample('abcdefg',randint(3,6))}
    res=[]
    for x in s1:               #对字典进行迭代,也就是对字典的key进行迭代,x指的是字典的每一个key。
      if x in s2 and x in s3:
        res.append(x)
      print(res)

    2、用集合的交集方式

    from functools import reduce

    s1={x:randint(1,4) for x in sample('abcdefg',randint(3,6))}
    s2={x:randint(1,4) for x in sample('abcdefg',randint(3,6))}
    s3={x:randint(1,4) for x in sample('abcdefg',randint(3,6))}
    s1.keys()&s2.keys()&s3.keys()    #字典的keys()方法返回的是一个集合,集合里面包含dict中所有的key

    提升:对于n个字典,利用map函数和reduce函数

    map(dict.keys,[s1,s2,s3,s4……])   #返回值为 [dict_keys(['c', 'f', 'b']) , dict_keys(['c', 'e', 'd', 'a', 'f'])  ,dict_keys(['b', 'a', 'e'])]

    reduce(lambda x,y:x&y,map(dict.keys,[s1,s2,s3]))    ===s1.keys()&s2.keys()&s3.keys() 

    map()函数接受两个参数,第一个参数是函数,第二个参数是Iterable,map把传入的函数依次作用到Iterable上的每一个元素,返回一个Iterator。

    reduce()函数接受一个函数,一个序列,reduce中的函数接受两个参数x,y。reduce把结果和序列的下一个元素做累计运算。

  • 相关阅读:
    线段树入门总结
    从零基础学三分查找
    Codeforces Beta Round #1 A,B,C
    isupper()函数
    matlab字符串操作总结
    hdu 4873 ZCC Loves Intersection(大数+概率)
    设计模式入门之桥接模式Bridge
    有关UIWebView的SSL总结
    vmware虚拟机上linux操作系统进行tty1~tty6切换方法和具体步骤
    Python BeautifulSoup4 使用指南
  • 原文地址:https://www.cnblogs.com/daacheng/p/7912280.html
Copyright © 2020-2023  润新知