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

2021-03-20 19:23

阅读:391

标签: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


评论


亲,登录后才可以留言!