【说站】python使用字节处理文件
2024-11-10
6
python使用字节处理文件
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'
以上就是python使用字节处理文件的方法,希望对大家有所帮助。更多编程基础知识学习:python学习网
本文教程操作环境:windows7系统、Python 3.9.1,DELL G3电脑。
更新于:2天前赞一波!
相关文章
- 【说站】python如何追写内容
- 【说站】python的浮点数占多少个字节
- 【说站】python反向输出数字
- 【说站】python中__file__属性的使用
- 【说站】python输入三个数求平均值
- 【说站】python提取字符串指定内容
- 【说站】python将数字转化为汉字
- 【说站】python快捷键
- 【说站】python交换两个变量的值
- 【说站】python截取字符串中特定部分
- 【说站】python统计不同字符的个数
- 【说站】python三元操作符如何赋值
- 【说站】python类变量和实例变量的对比
- 【说站】python关闭文件的两种方法
- 【说站】python缓冲二进制文件
- 【说站】python怎么导入pygame模块
- 【说站】python文件路径的组成
- 【说站】python赋值和交换的方法
- 【说站】python thread模块如何实现多线程
- 【说站】python里的π怎么输入
文章评论
评论问答