作者 无涯 在python中,序列化可以理解为:把python的对象编码转换为json格式的字符串,反序列化可以理解为:把json格式字符串解码为python数据对象。 在python的标准库中,专门提供了json库与pickle库来处理这部分。 先来学习json的库,导入json库很简单,直接im ...
分类:
编程语言 时间:
2018-05-13 23:12:27
阅读次数:
304
描述 Alice bought a lot of pairs of socks yesterday. But when she went home, she found that she has lost one of them. Each sock has a name which contain ...
分类:
其他好文 时间:
2018-05-05 23:05:48
阅读次数:
198
描述 Alice bought a lot of pairs of socks yesterday. But when she went home, she found that she has lost one of them. Each sock has a name which contain ...
分类:
其他好文 时间:
2018-05-05 20:42:05
阅读次数:
202
import sys f = open("yesterday2","r",encoding="utf-8") f_new = open("yesterday2.bak","w",encoding="utf-8") find_str = sys.argv[1] replace_str = sys.ar... ...
分类:
其他好文 时间:
2018-05-02 15:53:50
阅读次数:
150
f=open('yesterday','r',encoding='utf-8')f_new=open('yesterday.bak','w',encoding='utf-8')for line in f: if '当我小的时候' in line: line=line.replace('当我小的时候' ...
分类:
其他好文 时间:
2018-04-30 11:58:11
阅读次数:
94
#w写模式,r读模式,a追加,r+读写,w+写读,a+追加读,rb二级制格式读文件,wb写二级制文件 '''f = open('yesterday','a+',encoding='utf-8') #文件句柄(文件内存对象): f = open('yesterday','r+',encoding='u ...
分类:
编程语言 时间:
2018-04-27 19:45:18
阅读次数:
168
以追加文件内容(a)、读(r)、写(w),读写(r+)的形式打开文件: f = open('yesterday','a',encoding='utf-8')#文件句柄 ...
分类:
编程语言 时间:
2018-04-25 20:03:20
阅读次数:
134
__author__ = "Alex Li" #data = open("yesterday",encoding="utf-8").read() f = open("yesterday2",'a',encoding="utf-8") #文件句柄 #a = append 追加 写方式打开文件,新创建一 ...
分类:
其他好文 时间:
2018-04-25 15:57:50
阅读次数:
171
1、文件操作 #读取文件 f=open("yesterday",encoding="utf-8")#f就是内存对象 data=f.read() #写入文件 write("文件内容!") f.readlines 读取文件成为一个列表,每行作为一个元素 #[读-写]文件 f=open("yesterda ...
分类:
其他好文 时间:
2018-04-22 12:48:05
阅读次数:
169
在Java 8中,可以用下面的代码实现相同的功能。 1 2 3 4 5 6 7 8 9 10 11 import java.time.LocalDateTime; class YesterdayCurrent { public static void main(String[] args) { Lo ...
分类:
其他好文 时间:
2018-04-21 16:12:14
阅读次数:
215