$ ls ~yifei/notes/

Python 中的 bytesio/stringio

Posted on:

Last modified:

Python 中的 io 包提供了 BytesIOStringIO,作用分别是把一个对象作为一个内存中的二进制 文件和文本文件,除了文件的 read/write/readline 等操作外,支持 getvalue 操作读取所有内容。

import io
f = io.BytesIO()
f.write(b"hello")  # 二进制文件只能写 b"xxx"
f.getvalue()
f.read(4)
WeChat Qr Code

© 2016-2022 Yifei Kong. Powered by ynotes

All contents are under the CC-BY-NC-SA license, if not otherwise specified.

Opinions expressed here are solely my own and do not express the views or opinions of my employer.

友情链接: MySQL 教程站