Ejemplo: uso de stringio de Python 3
import io
output = io.StringIO()
output.write('First line.n')
print('Second line.', file=output)
# Retrieve file contents -- this will be
# 'First line.nSecond line.n'
contents = output.getvalue()
# Close object and discard memory buffer --
# .getvalue() will now raise an exception.
output.close()
¡Haz clic para puntuar esta entrada!
(Votos: 0 Promedio: 0)