Questions tagged «stringio»



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 

By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.