Python 官方文档:入门教程 => 点击学习
<span style="font-family: Arial, Helvetica, sans-serif; background-color: rgb(255, 255, 255);">python中的Stringio与c
<span style="font-family: Arial, Helvetica, sans-serif; background-color: rgb(255, 255, 255);">python中的Stringio与cStringIO</span>
import StringIO
a = StringIO.StringIO('title')
a.write('content1\n')
a.write('content2')
a.seek(0) #必须指定文件指针位置到文件开头,否则无法读出数据
print a.read()
a.close() #必须和文件一样关闭
输出结果是:import StringIO
a = cStringIO.StringIO('title')
a.write('content1\n')
但是如果实例化时不提供默认参数,那么则是可以读写的。注意到
import cStringIO, StringIO
a = StringIO.StringIO()
b = StringIO.StringIO('a')
c = cStringIO.StringIO()
d = cStringIO.StringIO('a')
print type(a)
print type(b)
print type(c)
print type(d)
print a.__class__
print b.__class__
print c.__class__
print d.__class__
--结束END--
本文标题: Python中的StringIO与cSt
本文链接: https://lsjlt.com/news/188966.html(转载时请注明来源链接)
有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341
2024-03-01
2024-03-01
2024-03-01
2024-02-29
2024-02-29
2024-02-29
2024-02-29
2024-02-29
2024-02-29
2024-02-29
回答
回答
回答
回答
回答
回答
回答
回答
回答
回答
0