摘要: # coding:utf-8 import json def read_file(path): content='' with open(path, 'r', encoding='utf-8') as f: content=f.readlines() print(' ') print(type(content[0])) dict_content=json.loads(content[0]) ret 阅读全文
posted @ 2019-10-22 09:08 走过不远的地方 阅读(2795) 评论(0) 推荐(0) 编辑