python之简单使用json文件

来源:互联网 发布:网络接入服务 编辑:程序博客网 时间:2024/05/01 07:26
import jsonf=file("a.json")j=json.load(f)f.close()print j

0 0