Python file interface for strings - Stack Overflow [closed]most recent 30 from stackoverflow.com2009-11-29T18:41:44Zhttp://stackoverflow.com/feeds/question/239912http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/239912/python-file-interface-for-strings5Python file interface for strings [closed]CAdaker2008-10-27T13:42:15Z2008-10-27T14:57:32Z
<p>Is there a Python class that wraps the <code>file</code> interface (read, write etc.) around a string? I mean something like the <code>stringstream</code> classes in C++.</p>
<p>I was thinking of using it to redirect the output of <code>print</code> into a string, like this</p>
<pre><code>sys.stdout = string_wrapper()
print "foo", "bar", "baz"
s = sys.stdout.to_string() #now s == "foo bar baz"
</code></pre>
<p>EDIT: This is a duplicate of <a href="http://stackoverflow.com/questions/141449/how-do-i-wrap-a-string-in-a-file-in-python">How do I wrap a string in a file in Python?</a></p>
http://stackoverflow.com/questions/239912/python-file-interface-for-strings/239929#23992912Answer by Peter Hoffmann for Python file interface for stringsPeter Hoffmann2008-10-27T13:48:02Z2008-10-27T13:48:02Z<p>Yes, there is StringIO:</p>
<pre><code>import StringIO
import sys
sys.stdout = StringIO.StringIO()
print "foo", "bar", "baz"
s = sys.stdout.getvalue()
</code></pre>
http://stackoverflow.com/questions/239912/python-file-interface-for-strings/239944#2399442Answer by Jason Baker for Python file interface for stringsJason Baker2008-10-27T13:51:41Z2008-10-27T13:51:41Z<p>For better performance, note that you can also use cStringIO. But also note that this isn't very portable to python 3.</p>