如何在 Python 中将字符串包装到文件中?

发布于 2024-07-05 21:19:29 字数 39 浏览 7 评论 0 原文

如何使用字符串的内容创建类似文件的对象(与文件相同的鸭子类型)?

How do I create a file-like object (same duck type as File) with the contents of a string?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(4

蓝海似她心 2024-07-12 21:19:29

对于 Python 2.x,请使用 StringIO 模块。 例如:

>>> from cStringIO import StringIO
>>> f = StringIO('foo')
>>> f.read()
'foo'

我使用 cStringIO (速度更快),但请注意它不 接受 Unicode无法编码为纯 ASCII 字符串的字符串。 (您可以通过将“from cStringIO”更改为“from StringIO”来切换到 StringIO。)

对于 Python 3.x,请使用 io 模块。

f = io.StringIO('foo')

For Python 2.x, use the StringIO module. For example:

>>> from cStringIO import StringIO
>>> f = StringIO('foo')
>>> f.read()
'foo'

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.

f = io.StringIO('foo')
昔日梦未散 2024-07-12 21:19:29

这适用于 Python2.7 和 Python3.x:

io.StringIO(u'foo')

This works for Python2.7 and Python3.x:

io.StringIO(u'foo')
撑一把青伞 2024-07-12 21:19:29

如果您的类文件对象预计包含字节,则应首先将字符串编码为字节,然后使用 BytesIO 对象来代替。 在Python 3中:

from io import BytesIO

string_repr_of_file = 'header\n byline\n body\n body\n end'
function_that_expects_bytes(BytesIO(bytes(string_repr_of_file,encoding='utf-8')))

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:

from io import BytesIO

string_repr_of_file = 'header\n byline\n body\n body\n end'
function_that_expects_bytes(BytesIO(bytes(string_repr_of_file,encoding='utf-8')))
狼性发作 2024-07-12 21:19:29

在 Python 3.0 中:

import io

with io.StringIO() as f:
    f.write('abcdef')
    print('gh', file=f)
    f.seek(0)
    print(f.read())

输出为:

'abcdefgh'

In Python 3.0:

import io

with io.StringIO() as f:
    f.write('abcdef')
    print('gh', file=f)
    f.seek(0)
    print(f.read())

The output is:

'abcdefgh'
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文