I couldn't figure it out with the Python documentation, so maybe i can ask it here:
import StringIO
line = StringIO.StringIO()
line.write('Hello World')
Is there any method i can use, that will do what line[1:]
would do on a string,
so line.getvalue()
will return ello World
?
Thanks.