2 python 3.x ImportError:没有名为“ cStringIO”的模块 如何解决ImportError: No module named 'cStringIO'Python 3.x下的问题? 78 python-3.x stringio cstringio
2 无法在python中使用StringIO的read()获取数据 使用Python2.7版本。下面是我的示例代码。 import StringIO import sys buff = StringIO.StringIO() buff.write("hello") print buff.read() 在上面的程序中,read()不返回任何内容,而getvalue()则返回“你好”。谁能帮我解决这个问题?我需要read(),因为我的以下代码涉及读取“ n”个字节。 73 python stringio
3 用字节而不是字符串工作的StringIO替换? 是否有替代pythonStringIO类的替代品,可以bytes代替字符串使用? 可能并不明显,但是如果您使用StringIO处理二进制数据,那么您在使用Python 2.7或更高版本时就不走运了。 68 python unicode python-2.7 stringio