这是一个实现:
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
欢迎分享,转载请注明来源:内存溢出
这是一个实现:
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
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)