python 嵌套字典取值增强版

枫铃3年前 (2021-07-23)Python261
def getdictvalue(d,code):
    result=[]
    if isinstance(d, dict) :
        try:
            value = d[code]
            result.append(value)
        except Exception as e:
            pass
        for valuedd in d.values():
            if isinstance(valuedd,dict):
                yied_result=getdictvalue(valuedd,code)
                if len(yied_result) != 0:
                    result.append(getdictvalue(valuedd,code))
            elif isinstance(valuedd,(list,tuple)):
                for item in d:
                    valueitem=getdictvalue(valuedd,code)
                    if valueitem !="None" and valueitem is not  None and  len(valueitem)!=0:
                        if valueitem not in result:
                            result.append(valueitem)
         
    elif isinstance(d, (list, tuple)):
            for item in d:
                value=getdictvalue(item,code)
                if value !="None" and  value is not None and  len(value)!=0:
                    if value not in result:
                        result.append(value)
    return result

由于返回时list,经过层层嵌套,list是复杂的,封装一个,增加一个list转换

'''
遇到问题没人解答?小编创建了一个Python学习交流QQ群:778463939
寻找有志同道合的小伙伴,互帮互助,群里还有不错的视频学习教程和PDF电子书!
'''
class listchangetype(object):
  """对于查找后的list的数据的清洗"""
  def __init__(self):
    self.arg = []
  def make(self,listone):
    for i in listone:
      if isinstance(i,(type,list)):
        for l in i:
          self.make(i)
      else:
        if i not in self.arg:
          self.arg.append(i)
    return self.arg

这样就按顺序,读取了复杂的dict

相关文章

python之super

为什么需要super 在python没有引入super之前, 如果需要在子类中引用父类的方法, 一般写法如下: class Father: def w...

如何使用python numpy中的数组复制

在使用python时我们...

python装饰器的使用场景

1、必备 #### 第一波 #### def foo(): print 'foo' foo #表示是函数 foo()...

使用Python解压zip、rar文件

解压 zip 文件 基...

Python里三个最高逼格的调试神器

Python里三个最高逼格的调试神器

调试是开发过程中不可避免的一个环节,在Python中我们使用print、logging、assert等方法进行调试既简单又实用,但...

发表评论

访客

看不清,换一张

◎欢迎参与讨论,请在这里发表您的看法和观点。