码迷,mamicode.com
首页 > 编程语言 > 详细

python 基础 7.8 json--下

时间:2017-11-13 11:18:55      阅读:147      评论:0      收藏:0      [点我收藏+]

标签:height   file   ##   div   pen   ace   imp   odi   type   

 
一. 文件和json 之间的转换
1. json.dump()
 
#/usr/bin/python
#coding=utf-8
#@Time   :2017/11/13 0:12
#@Auther :liuzhenchuan
#@File   :json -下.py
 
##文件相关的
#load 肯定是从文件中摘出json 数据,load 肯定是把文件转换成json数据
#dump 就是爸json 数据写入到文件中。
 
# 示例1:把json 写入到文件中
import json
 
jsondate = {‘a‘:1,‘b‘:2.,‘c‘:3,‘d‘:4}
with open(‘a.txt‘,‘w+‘) as fd:
     json.dump(jsondate,fd)
 
 
#示例:把文件用json格式读出来
   with open(‘a.txt‘,‘r‘) as fd1:
     m = json.load(fd1)
     print m
     print type(m)
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

python 基础 7.8 json--下

标签:height   file   ##   div   pen   ace   imp   odi   type   

原文地址:http://www.cnblogs.com/lzcys8868/p/7824778.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!