如何在 Python 中将字符串包装到文件中?
如何使用字符串的内容创建类似文件的对象(与文件相同的鸭子类型)?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
如何使用字符串的内容创建类似文件的对象(与文件相同的鸭子类型)?
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(4)
对于 Python 2.x,请使用 StringIO 模块。 例如:
我使用 cStringIO (速度更快),但请注意它不 接受 Unicode无法编码为纯 ASCII 字符串的字符串。 (您可以通过将“from cStringIO”更改为“from StringIO”来切换到 StringIO。)
对于 Python 3.x,请使用
io
模块。For Python 2.x, use the StringIO module. For example:
I use cStringIO (which is faster), but note that it doesn't accept Unicode strings that cannot be encoded as plain ASCII strings. (You can switch to StringIO by changing "from cStringIO" to "from StringIO".)
For Python 3.x, use the
io
module.这适用于 Python2.7 和 Python3.x:
This works for Python2.7 and Python3.x:
如果您的类文件对象预计包含字节,则应首先将字符串编码为字节,然后使用 BytesIO 对象来代替。 在Python 3中:
If your file-like object is expected to contain bytes, the string should first be encoded as bytes, and then a BytesIO object can be used instead. In Python 3:
在 Python 3.0 中:
输出为:
In Python 3.0:
The output is: