python用字节处理文件实例讲解
作者:小妮浅浅 时间:2023-07-18 12:44:50
1、可以在mode参数中添加'b'字符。所有适合文件对象的相同方法。然而,每种方法都希望并返回一个bytes对象。
>>> with open(`dog_breeds.txt`, 'rb') as reader:
>>> print(reader.readline())
b'Pug\n'
2、当打开文件并单独阅读这些字节时,可以看到它确实是一个png文件:
>>> with open('jack_russell.png', 'rb') as byte_reader:
>>> print(byte_reader.read(1))
>>> print(byte_reader.read(3))
>>> print(byte_reader.read(2))
>>> print(byte_reader.read(1))
>>> print(byte_reader.read(1))
b'\x89'
b'PNG'
b'\r\n'
b'\x1a'
b'\n'
知识点扩展:
读取文件的字节流数据,将其转换为十六进制数据
def read_file():
with open('./flag.zip','rb') as file_byte:
file_hex = file_byte.read().hex()
print(file_hex)
write_file(file_hex)
def write_file(file_hex):
with open('new.txt','w') as new_file:
new_file.write(file_hex)
if __name__ == '__main__':
read_file()
读取文件的字节流数据,将其编码为base64并输出
import base64
def read_file():
with open('./flag.zip','rb') as file_byte:
file_base64 = base64.b64encode(file_byte.read())
print(file_base64)
if __name__ == '__main__':
read_file()
将十六进制文件转化为字节流文件写入
import struct
a = open("str.txt","r")#十六进制数据文件
lines = a.read()
res = [lines[i:i+2] for i in range(0,len(lines),2)]
with open("xxx.xxx","wb") as f:
for i in res:
s = struct.pack('B',int(i,16))
f.write(s)
来源:https://www.py.cn/jishu/jichu/29107.html
标签:python,字节,处理文件
0
投稿
猜你喜欢
django queryset相加和筛选教程
2022-09-10 11:04:43
Python实现查看系统启动项功能示例
2022-12-27 17:03:14
在Python中调用ggplot的三种方法
2023-08-23 00:40:58
详谈配置phpstorm完美支持Codeigniter(CI)代码自动完成(代码提示)
2023-09-06 14:34:52
Python3.6 + TensorFlow 安装配置图文教程(Windows 64 bit)
2021-07-28 21:15:04
Python面向对象之类和实例用法分析
2022-09-09 00:02:33
CSS 的优先规则
2009-01-08 12:40:00
Python中使用subprocess库创建附加进程
2022-01-01 06:30:25
jenkins配置golang 代码工程自动发布的实现方法
2024-05-22 10:12:22
Jquery多选下拉列表插件jquery multiselect功能介绍及使用
2024-04-22 12:59:41
JS模拟简易滚动条效果代码(附demo源码)
2024-04-23 09:22:45
Go REFLECT Library反射类型详解
2024-04-26 17:25:15
python实现发送带附件的邮件代码分享
2021-11-24 12:28:30
使用tensorflow框架在Colab上跑通猫狗识别代码
2022-04-27 04:43:39
一款Python工具制作的动态条形图(强烈推荐!)
2021-07-21 17:38:18
javascript面向对象技术基础(二)
2010-02-07 13:09:00
详解Python Qt的窗体开发的基本操作
2021-03-28 00:58:12
mysql密码过期导致连接不上mysql
2024-01-22 12:28:06
js实现的xml对象转json功能示例
2024-04-19 10:41:59
Python模拟登录验证码(代码简单)
2022-09-04 04:41:37