统计字典或者json字符串最大深度
Posted 芦荟~lh
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了统计字典或者json字符串最大深度相关的知识,希望对你有一定的参考价值。
# 统计字典或者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字符串最大深度的主要内容,如果未能解决你的问题,请参考以下文章