码迷,mamicode.com
首页 > 其他好文 > 详细

io.StringIO

时间:2015-10-08 20:02:33      阅读:163      评论:0      收藏:0      [点我收藏+]

标签:

#! /usr/bin/python  
# -*-coding:‘uft-8‘-*-

from __future__ import print_function  #python2使用py3的print方法
import io,sys


f=io.StringIO()
sys.stdout=f  #重定义sys.stdout
print(uhello)    #u‘hello‘ write进f  ,unicode才能写入f,所以用了u,否则报错


sys.stdout=sys.__stdout__  #sys.stdout恢复
print(f.getvalue())     #获取 uhello

 

>>> import io
>>> f=io.StringIO()
>>> f.write(uhello)
5L
>>> f.getvalue()
uhello
>>> 

 

io.StringIO

标签:

原文地址:http://www.cnblogs.com/Citizen/p/4861786.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!