Python file interface for strings - Stack Overflow [closed] most recent 30 from stackoverflow.com 2009-11-29T18:41:44Z http://stackoverflow.com/feeds/question/239912 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/239912/python-file-interface-for-strings 5 Python file interface for strings [closed] CAdaker 2008-10-27T13:42:15Z 2008-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#239929 12 Answer by Peter Hoffmann for Python file interface for strings Peter Hoffmann 2008-10-27T13:48:02Z 2008-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#239944 2 Answer by Jason Baker for Python file interface for strings Jason Baker 2008-10-27T13:51:41Z 2008-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>