文章目录
JSON
python
import json
#json常用的只有4个方法,不带s的是序列化到文件或者从文件反序列化,带s的都是内存操作不涉及持久化
json.load() # 从文件中读取json字符串 -->python对象
json.loads() # json字符串 ->python对象
json.dump() # python对象转化为json字符串写入文件中
json.dumps() # python 对象 -> json字符串
with open('json_test.txt','w+') as f:
json.dump(data,f)
with open('json_test.txt','r+') as f:
print(json.load(f))
ps:元组和列表解析出来的均是数组
文件操作
with 表示会自动在读写文件后关闭流,常用模式r,w,a
r : 读取文件,若文件不存在则会报错
w: 写入文件,若文件不存在则会先创建再写入,会覆盖原文件
a : 写入文件,若文件不存在则会先创建再写入,但不会覆盖原文件,而是追加在文件末尾
rb,wb:分别于r,w类似,但是用于读写二进制文件
r+ : 可读、可写,文件不存在也会报错,写操作时会覆盖
w+ : 可读,可写,文件不存在先创建,会覆盖
a+ :可读、可写,文件不存在先创建,不会覆盖,追加在末尾
python
# 1.写文件
with open("a.txt","w") as f:
json.dumps(data,f)
# 2.读文件
with open("a.txt","r") as f:
json.loads(data,f)
# 3.逐行写文件
with open("a.txt","w") as f:
f.writeLines(data+"\n")
# 4.逐行读文件
with open("a.txt","r") as f:
for line in f:
dosomething