StringIO函数

Posted 爱你无目的

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了StringIO函数相关的知识,希望对你有一定的参考价值。

#数据的读取除了通过文件,还可以在内存中进行。Python中的io模块提供了对str操作的StringIO函数。
#要把str写入StringIO,我们需要创建一个StringIO,然后像文件一样写入。操作示例如下:
1 #!/usr/bin/python3
2 #-*-coding:UTF-8-*-
3 #StringIO
4 
5 from io import StringIO
6 io_val=StringIO()
7 io_val.write(hello)
8 print(say:,io_val.getvalue())
#执行结果如下:
1 D:\Pythonworkspace>python StringIO.py
2 say: hello
#由执行结果看到,getvalue()用于获得写入后的str。要读取StringIO,还可以用str初始化StringIO,然后像读文件一样读取。操作示例如下:
 1 #!/usr/bin/python3
 2 #-*-coding:UTF-8-*-
 3 #StringIO
 4 
 5 from io import StringIO
 6 
 7 io_val=StringIO(Hello\nPython!\nWecome!)
 8 while True:
 9     line=io_val.readline()
10     if line==‘‘:
11         break
12     print(line value:,line.strip())
#执行结果如下:
1 D:\Pythonworkspace>python StringIO.py
2 line value: Hello
3 line value: Python!
4 line value: Wecome!

 

以上是关于StringIO函数的主要内容,如果未能解决你的问题,请参考以下文章

Python StringIO实现内存缓冲区中读写数据

转载:python中的StringIO模块

我必须做 StringIO.close() 吗?

python的StringIO模块

在 python 中使用 StringIO 的 read() 获取数据失败

pyqt5 qimage 读取内存数据