码迷,mamicode.com
首页 > Web开发 > 详细

统计字典或者json字符串最大深度

时间:2020-04-19 17:43:11      阅读:93      评论:0      收藏:0      [点我收藏+]

标签:ict   bsp   dep   lis   return   list   span   字符串   div   

 

# 统计字典或者json字符串的深度


def depth(x):
    if type(x) is dict and x:
        return 1 + max(depth(x[a]) for a in x)
    if type(x) is list and x:
        return 1 + max(depth(a) for a in x)
    return 0

 

统计字典或者json字符串最大深度

标签:ict   bsp   dep   lis   return   list   span   字符串   div   

原文地址:https://www.cnblogs.com/come202011/p/12732391.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!