2020
09-23
09-23
python json 递归打印所有json子节点信息的例子
我就废话不多说了,直接上代码吧defjson_txt(self,dic_json):#self.debug_print("json_txt")ifisinstance(dic_json,dict):#判断是否是字典类型isinstance返回Truefalseforkeyindic_json:#dic_json=json.loads(s)s=dic_json[key]#self.debug_print(str(len(s))+"type:"+str(type(s)))t=str(type(s))ift.startswith("<class'list'>"):foriinrange(0,len(s)):self.debug_print...
继续阅读 >