码迷,mamicode.com
首页 > 编程语言 > 详细

python笔记之BytesIO

时间:2017-11-05 23:31:32      阅读:558      评论:0      收藏:0      [点我收藏+]

标签:size   question   tool   too   rip   如何   如何使用   bsp   from   

 

1. 什么是BytesIO

BytesIO与StringIO类似,不同的是StringIO只能存放string,BytesIO是用来存放bytes的,它提供了在内存中读写字节的能力。

即在内存中读写字符串使用StringIO,读写bytes使用BytesIO。

 

2. 如何使用

from io import BytesIO

if __name__ == ‘__main__‘:
    buff = BytesIO()
    buff.write(b‘hello, python‘)

    s = buff.read()
    print(s)

    s = buff.getvalue()
    print(s)

    buff.seek(0)
    s = buff.read()
    print(s)

 

 

参考资料:

1. https://docs.python.org/2/library/io.html

2. https://www.zhihu.com/question/49102468

.

python笔记之BytesIO

标签:size   question   tool   too   rip   如何   如何使用   bsp   from   

原文地址:http://www.cnblogs.com/cc11001100/p/7789230.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!