如何在python中使用StringIO添加新行?

时间:2014-05-26 11:17:44

标签: python stringio

import StringIO
output = StringIO.StringIO()   
output.write('this is the first line\n the new line should come here')
a = output.getvalue()
output.close()
print a 

但新行字符\n不会作为新行打印。

如何获取换行符?

0 个答案:

没有答案