文件管理
os库提供了很多和文件管理操作的方法
1.数据本地化和数据持久化 - 通过文件将数据存到硬盘中
数据库文件,txt,json,plist,xml,,png文件,mp4,mp3
2.文件操作 - 文件内容操作
基本步骤:打开文件 --> 操作文件(读/写) --> 关闭文件
1)打开文件
"""
open(file, mode, encoding=None) - 以指定方式打开指定文件,并且返回被打开的文件对象
说明:
file -- 需要打开的文件路径
./ --当前文件所在的目录(一个./可以省略 )
../ -- 当前目录所在目录的上层目录
以此类推
mode -- 字符串,打开方式
r -- 默认值,以读的方式打开文件(只能进行读操作)
w -- 以写的方式打开文件(只能进行写操作),覆盖
a -- 以写的方式打开文件(稚嫩进行写操作),追加
rb/br -- 以读的方式打开文件(只能进行读操作),读出来的内容是二进制
wb/bw -- 只能进行写操作(只能进行写操作),将二进制数据写到文件中
+ -- 以读写的方式打开(了解)
encoding -- 文本编码方式
utf-8
注意:文本编码只针对文本文件,二进制文件不能设置编码方式
"""
# 2) 文件操作
"""
文件对象.read() -- 获取文件中的内容
从读写位置开始,读到文件结尾,并且返回(读写位置默认在文件开头)
文件对象.seek(字节数) -- 将读写位置移动到指定的地方(了解)
文件对象.readline -- 读一行
"""
def main():
# =================1.文件操作===================
# 1)read
f = open('./text.txt', 'r', encoding='utf-8')
print(f)
result = f.read()
print(result)
# 第二次在读需要重新打开,或者移动读写位置
# f = open('./text.txt', 'r', encoding='utf-8')
# 2)f.seek
# 将读写位置移动到文件开头
f.seek(0)
result2 = f.read()
print('第二次读', result2)
f.seek(0)
# 3) readline -- 读一行
result3 = f.readline()
print('读一行', result3)
f.seek(0)
num1 = 0
while True:
num1 += 1
result3 = f.readline()
if not result3:
break
print('第%d行内容:' % num1, result3, end='')
print()
# =================2.文件操作==============
"""
文件对象.write(写的内容) - 将指定的内容写进指定的文件中
"""
f2 = open('./text.txt', 'w', encoding='utf-8')
result4 = f2.write('床前明月光')
print('返回内容:', result4) # 返回的是字节数
# 关闭文件
f.close()
# ========================================
"""
注意:打开文件的时候,如果以读的方式打开一个不存在的文件,会出现异常,报错
如果以写的方式打开一个不存在的文件,不会出现异常,并且会新建对应的文件并打开
"""
if __name__ == '__main__':
main()
二进制文件操作
1.二进制文件操作
wb/rb -- (写/读)的时候(类型/获取)是二进制数据(bytes)
普通的文本文件可以通过二进制的形式去打开,影响只是获取到的内容,和写进去的内容的数据类型
二进制文件只能以二进制的形式打开(例如:图片,视频,音频等)
2.二进制数据 - 图片,音频,视频
一般二进制数据都是通过网络请求获取到的,或者通过读取本地的二进制文件来取到的
-
- 将字符串转换成二进制
bytes(字符串, encoding='utf-8')
字符串.encode(编码方式)
- 将字符串转换成二进制
2)将二进制转换成字符串
str(二进制,编码方式(encoding='utf-8'))
二进制数据.decode(编码方式)
3.文件上下文
with open(文件路径, 打开方式, 编码方式) as 文件对象:
操作文件
文件操作完成后,会自动关闭
def main():
# 3.文件上下文
with open('text.txt', 'r',encoding='utf-8') as f1:
print(f1.read())
# 1.普通文本文件以二进制打开
f3 = open('text.txt', 'rb')
reslut = f3.read()
print(reslut, type(reslut))
f3.close()
# 二进制文件必须以二进制形式打开
if __name__ == '__main__':
main()
json数据
1.json数据
1)满足json格式的数据就叫json数据
2)json格式:一个json有且只有一个数据
这个数据必须满足是json支持的数据类型3)json支持的数据类型
数字(number) -- 包含所有的数字(整数和小数),支持科学计数法
字符串(string) -- 用双引号引起来的字符集,必须用双引号引起来,支持转义字符和编码字符
布尔(boolean) -- true/false (在json中,布尔值,首字母小写)
数组(array) -- 相当于Python中的列表
字典(dictionary ) -- 相当于python中的字典, key必须是字符串
空值 -- null 相当于None
2.使用json
- 1)解析json数据(获取到json数据后将json中想要的东西解析出来) -- 做前段开发人员的工作
- 2)构造json数据
在python中有一个内置库,专门负责json数据的处理,json库
1.1)将json数据转换成python数据
json数据 python数据
number int/float
string str,可能出现将双引号变成单引号
boolean,true,false bool,True,False
array list
dictionary dict
null None
1.2)json.loads(字符串, encoding='utf-8') - 解析json数据
字符串要求:字符串中的内容本身就是一个json数据(去掉引号以后本身就是一个json数据) # 报错类型:json.decoder.JSONDecodeError
"""
# ===========1.json转python(json数据解析)
result = json.loads('"123"', encoding='utf-8')
print(result, type(result)) # 123
result = json.loads('100', encoding='utf-8')
print(result, type(result))
result = json.loads('true', encoding='utf-8')
print(result, type(result))
result = json.loads('[1, 2, 3, "asd", {"a": 123}]', encoding='utf-8')
print(result, type(result))
with open('./jsonData.json', 'r', encoding='utf-8') as result:
f1 = result.read()
result1 = json.loads(f1, encoding='utf-8')
data = result1['data']
max_dict = max(data, key=lambda x: int(x['favourite']))
print(max_dict['name'], max_dict['text'], max_dict['favourite'])
# =================2.pythons数据转换成json================
"""
2.1)python转json
python数据 json数据
int/float number
bool boolean
str string , 会将单引号变成双引号
list,tuple array
dict dictionary
None null
2.2)
json.dumps(python数据) --> 将python数据转换成内容是对应的json数据的字符串,结果是一个字符串
"""
result = json.dumps(100)
print(type(result), result)
result = json.dumps('abc')
print(type(result), result)
result = json.dumps(True)
print(type(result), result)
result = json.dumps({'name': '小明', 'age': 18})
print(type(result), result)
# ==============3.json文件操作==============
"""
json.load(文件对象) - 将文件对象中文件的内容转换成python数据
文件的内容只是json数据
json.dump(python,文件对象) -- 将python数据转换成json字符串在写入指定文件中
"""
with open('./json2.json', 'r', encoding='utf-8') as f2:
# f1 = f2.read()
# print(f1)
print('====================')
# print(f1)
result = json.load(f2)
print(result)
print('====================')
with open('./json2.json', 'w', encoding='utf-8') as f:
result = json.dump([100, 'abc', 123], f)
print(result)
def main():
pass
if __name__ == '__main__':
main()
数据持久化
1.数据怎么本地化
数据保存在本地文件中一份
每次需要用到这个数据的时候,不是直接给值,而是从本地文件中读取他的值
数据修改完后,要将最新的数据保存带本地文件中
2.什么时候需要用到json文件
需要持久化的数据是字典,列表,数字