之前只是在项目中看到过,没怎么注意,正好跟对象一起看python学习手册,看到了这个部分于是来研究下。

python版本 2.7.x
os  win7

print

 一般就是执行脚本的时候,把信息直接打印到标准输出,也就是我们通常说的控制台
print是python __builtin__ 中的一个方法,来看看他的定义
def print(stream):
  """ print(value, ..., sep=' ', end='\\n', file=sys.stdout)

  Prints the values to a stream, or to sys.stdout by default.
  Optional keyword arguments:
  file: a file-like object (stream); defaults to the current sys.stdout.
  sep:  string inserted between values, default a space.
  end:  string appended after the last value, default a newline. """
  pass
从这里我们就能看到print也许比我们常用的功能多一些
* sep 用来做values之间的分割符,所以当我们 print '2', 'a' 的时候,实际中间是空格
* end 默认是换行,所以print总是打印一行信息
* 其实print还可以输出到文件中
但我们又知道python2中的print 后面是没有参数列表的
In [2]: print ('a', 'b', sep='|')
  File "<ipython-input-2-bcb798285c07>", line 1
    print ('a', 'b', sep='|')
                        ^
SyntaxError: invalid syntax

哦噢,报错了,其实只要 from __future__ import print_function 就可以像python3一样使用参数了
In [6]: print('a', 'b')
a b

In [7]: print('a', 'b', sep='--')  #print 多个values 不用逗号分隔
a--b

In [8]: print('nihao');print('orangle')
nihao
orangle

In [9]: print('nihao', end='');print('orangle')  #print 不换行
nihaoorangle

好像print也有不少玩法哦
我们直接把print的值写到文件对象中,而不是默认的sys.stout试
In [11]: f = open('test.txt', 'w')
In [12]: print('haha.....csdn', file=f)
In [15]: ls test.txt
 驱动器 D 中的卷没有标签。
 卷的序列号是 0002-FA2E
 D:\code\python 的目录
2015/01/20 周二  10:37                 0 test.txt
               1 个文件              0 字节
               0 个目录 61,124,526,080 可用字节
In [16]: f.close()
到对应的目录下看看,test.txt的内容,果然是 haha.....csdn, 不过一定要记得 f.close(), 如果不关闭,内容是无法保存到文件中的。

sys.stdout.write

这个方法调用的是 ,file 对象中的write方法 ,把字符写到标准输出中,看起来跟print 差不多。
  def write(self, str):
    """ write(str) -> None.  Write string str to file.

    Note that due to buffering, flush() or close() may be needed before
    the file on disk reflects the data written. """
    return ""

关系

这个方法和print什么关系呢? 我们来查查
可以认为 print是对 sys.stdout.write的友好封装,也只是从 python学习手册这样看到。

区别

print 可以把一个对象转化成str然后放到标准输出中, sys.stdout.write 需要把对象先转化成对象在输出
In [3]: class A():
   ...:     def __str__(self):
   ...:         return "A"
   ...:

In [5]: a = A()
In [6]: print a
A

In [9]: import sys
In [10]: sys.stdout.write(a)
---------------------------------------------------------------------------
TypeError                                 Traceback (most recent call last)
<ipython-input-10-0697f962911e> in <module>()
----> 1 sys.stdout.write(a)

TypeError: expected a character buffer object

In [11]: sys.stdout.write(str(a))
A
所以说不能用 sys.stdout.write来直接代替 print


运用

这里两者怎么结合使用?
引用 Learning Python 中的一段代码
import sys
temp = sys.stdout #store original stdout object for later
sys.stdout = open('log.txt','w') #redirect all prints to this log file
print("testing123") #nothing appears at interactive prompt
print("another line") #again nothing appears. It is instead written to log file
sys.stdout.close() #ordinary file object
sys.stdout = temp #restore print commands to interactive prompt
print("back to normal") #this shows up in the interactive prompt

log.txt文件中保存输出结果为
testing123
another line
我们可以把调试中打印的信息保存的文件中,这样也是追中和查找错误的一个方式
还有就是多线程日志中可能会用到
sys.stdout.write 来封装日志写入


参考文章:

[Python]print vs sys.stdout.write的更多相关文章

  1. PyQt(Python+Qt)学习随笔:print标准输出sys.stdout以及stderr重定向QTextBrowser等图形界面对象

    专栏:Python基础教程目录 专栏:使用PyQt开发图形界面Python应用 专栏:PyQt入门学习 老猿Python博文目录 <在Python实现print标准输出sys.stdout.st ...

  2. sys.stdout.write和print和sys.stdout.flush

    1. 先看下官方文档 """ sys.stdout.write(string) Write string to stream. Returns the number of ...

  3. 在Python实现print标准输出sys.stdout、stderr重定向及捕获的简单办法

    专栏:Python基础教程目录 专栏:使用PyQt开发图形界面Python应用 专栏:PyQt入门学习 老猿Python博文目录 Python中的标准输出和错误输出由sys模块的stdout.stde ...

  4. print和sys.stdout

    print print语句执行的操作是一个写操作,把我们从外设输入的数据写到了stdout流,并进行了一些特定的格式化.和文件方法不同,在执行打印操作是,不需要将对象转换为字符串(print已经帮我们 ...

  5. python 标准输入输出sys.stdout. sys.stdin

    import sys, time ## print('please enter your name:')# user_input=sys.stdin.readline()# print(user_in ...

  6. 关于print()、sys.stdout、sys.stderr的一些理解

    print() 方法的语法: print(*objects, sep=' ', end='\n', file=sys.stdout, flush=False) 其中file = sys.stdout的 ...

  7. Python之print(args)与sys.stdout.write(string)使用总结

    一.sys.stdout.write(string) import sys; # sys.stdout.write(): # 1.默认不换行 # 2.参数必须是字符串 # demo 01 x = &q ...

  8. 【python】print · sys.stdout · sys.stderr

    参考文档 Python重定向标准输入.标准输出和标准错误 http://blog.csdn.net/lanbing510/article/details/8487997 python重定向sys.st ...

  9. 【Python】【Head First Python】【chapter1】2 - sys.stdout 和 print 的区别

    sys.stdout 和 print 的区别 首先,通过 help(print) 得到print内建函数的参数 Help on built-in function print in module bu ...

随机推荐

  1. python文件结构与import用法

    首先上一张总结图: 在pycharm中,一般不会将当前文件目录自动加入自己的sourse_path.如果遇到无法import同级目录下的其他模块, 右键make_directory as-->S ...

  2. 以技术面试官的经验分享毕业生和初级程序员通过面试的技巧(Java后端方向)

    本来想分享毕业生和初级程序员如何进大公司的经验,但后来一想,人各有志,有程序员或许想进成长型或创业型公司或其它类型的公司,所以就干脆来分享些提升技能和通过面试的技巧,技巧我讲,公司你选,两厢便利. 毕 ...

  3. TopCoder SRM 566 Div 1 - Problem 1000 FencingPenguins

    传送门:https://284914869.github.io/AEoj/566.html 题目简述: 平面上有中心在原点,一个点在(r,0)处的正n边形的n个顶点.平面上还有m个企鹅,每个企鹅有一个 ...

  4. 【HNOI2002】【矩阵快速幂】公交车路线

    仍然是学弟出的题目的原题@lher 学弟将题目改成了多组数据,n在ll范围内,所以我就只讲提高版的做法. 链接:https://www.luogu.org/problem/show?pid=2233 ...

  5. [USACO08JAN]跑步Running

    题目描述 The cows are trying to become better athletes, so Bessie is running on a track for exactly N (1 ...

  6. 智能指针之 auto_ptr

    C++的auto_ptr所做的事情,就是动态分配对象以及当对象不再需要时自动执行清理,该智能指针在C++11中已经被弃用,转而由unique_ptr替代, 那这次使用和实现,就具体讲一下auto_pt ...

  7. 基于Spark环境对比Python和Scala语言利弊

    在数据挖掘中,Python和Scala语言都是极受欢迎的,本文总结两种语言在Spark环境各自特点. 本文翻译自  https://www.dezyre.com/article/Scala-vs-Py ...

  8. synchronized修饰static方法与非static方法的区别

    1. 当synchronized修饰一个static方法时,多线程下,获取的是类锁(即Class本身,注意:不是实例),作用范围是整个静态方法,作用的对象是这个类的所有对象. 2. 当synchron ...

  9. Intellij idea: java.lang.ClassNotFoundException:javax.el.ELResolver异常解决办法

    使用Intellij idea编译过程中遇到的问题及解决办法. 由于编译时候报javax.servlet不存在,我把tomcat下的servlet-api.jar放到了External Librari ...

  10. Python中模块之hashlib&hmac的讲解

    hashlib & hmac的讲解 两个模块主要用于加密相关的操作. 1. hashlib模块 md5 具体代码如下 import hashlib ha_m5 = hashlib.md5()# ...