翼度科技»论坛 编程开发 python 查看内容

Python教程:sys.stdout方法

5

主题

5

帖子

15

积分

新手上路

Rank: 1

积分
15
Python中sys 模块中的一个方法是stdout ,它使用其参数直接显示在控制台窗口上。
这些种类的输出可以是不同的,像一个简单的打印语句,一个表达式,或者一个输入提示。print() 方法,它有相同的行为,首先转换为sys.stdout() 方法,然后在控制台显示结果。
sys.stdout 方法的语法
  1. sys.stdout
复制代码
参数
不涉及任何参数。我们使用sys.stdout 作为输出文件对象。
返回值
该方法不返回任何值,只在控制台直接显示输出。
示例:在Python中使用sys.stdout 方法
  1. # import the sys module to use methods
  2. import sys
  3. sys.stdout.write('This is my first line')
  4. sys.stdout.write('This is my second line')
复制代码
输出:
  1. This is my first line This is my second line
复制代码
它将返回sys.stdout.write() 方法中传递的参数并在屏幕上显示。
示例:sys.stdout.write() 与print() 方法
  1. import sys
  2. # print shows new line at the end
  3. print("First line ")
  4. print("Second line ")
  5. # displays output directly on console without space or newline
  6. sys.stdout.write('This is my first line ')
  7. sys.stdout.write('This is my second line ')
  8. # for inserting new line
  9. sys.stdout.write("n")
  10. sys.stdout.write('In new line ')
  11. # writing string values to file.txt
  12. print('Hello', 'World', 2+3, file=open('file.txt', 'w'))
复制代码
输出:
  1. First line
  2. Second line
  3. This is my first line This is my second line
  4. In new line
  5. # file.txt will be created with text "Hello World 5" as a string
复制代码
我们使用sys.stdout.write() 方法直接在控制台显示内容,print() 语句有一个薄薄的stdout() 方法的包装,也是对输入的格式化。所以,默认情况下,它在参数之间留有空格,并输入一个新行。
在Python 3.0版本之后,print() 方法不仅接受stdout() 方法,还接受一个文件参数。为了给出一个行的空格,我们把"n" 传给stdout.write() 方法。
示例代码:使用sys.stdout.write() 方法来显示一个列表
  1. import sys
  2. # sys.stdout assigned to "carry" variable
  3. carry = sys.stdout
  4. my_array = ['one', 'two', 'three']
  5. # printing list items here
  6. for index in my_array:
  7.     carry.write(index)
复制代码
输出:
  1. # prints a list on a single line without spaces
  2. onetwothree
复制代码
输出显示,stdout.write() 方法没有给所提供的参数提供空间或新行。
示例:在Python中使用sys.stdout.flush() 方法
  1. import sys
  2. # import for the use of the sleep() method
  3. import time
  4. # wait for 5 seconds and suddenly shows all output
  5. for index in range(5):
  6.     print(index, end =' ')
  7.     time.sleep(1)
  8. print()
  9. # print one number per second till 5 seconds
  10. for index in range(5):
  11.     # end variable holds /n by default
  12.     print(index, end =' ')
  13.     sys.stdout.flush()
  14.     time.sleep(1)
复制代码
输出结果:
  1. 0 1 2 3 4 # no buffer
  2. 0 1 2 3 4 # use buffer
复制代码
sys.stdout.flush() 方法刷新了缓冲区。这意味着它将把缓冲区的东西写到控制台,即使它在写之前会等待。
示例:在Python中使用sys.stdout.encoding() 方法
  1. # import sys module for stdout methods
  2. import sys
  3. # if the received value is not None, then the function prints repr(receivedValue) to sys.stdout
  4. def display(receivedValue):
  5.     if receivedValue is None:
  6.         return
  7.     mytext = repr(receivedValue)
  8.     # exception handling
  9.     try:
  10.         sys.stdout.write(mytext)
  11.     # handles two exceptions here
  12.     except UnicodeEncodeError:
  13.         bytes = mytext.encode(sys.stdout.encoding, 'backslashreplace')
  14.         if hasattr(sys.stdout, 'buffer'):
  15.             sys.stdout.buffer.write(bytes)
  16.         else:
  17.             mytext = bytes.decode(sys.stdout.encoding, 'strict')
  18.             sys.stdout.write(mytext)
  19.     sys.stdout.write("n")
  20. display("my name")
复制代码
输出:
  1. 'my name'
复制代码
方法sys.stdout.encoding() 用于改变sys.stdout 的编码。在方法display() 中,我们用它来评估一个在交互式 Python 会话中插入的表达式。
有一个异常处理程序有两个选项:如果参数值是可编码的,那么就用backslashreplace 错误处理程序进行编码。否则,如果它不是可编码的,应该用sys.std.errors 错误处理程序进行编码。
示例:重复的sys.stdout 到一个日志文件
  1. import sys
  2. # method for multiple log saving in txt file
  3. class multipleSave(object):
  4.     def __getattr__(self, attr, *arguments):
  5.         return self._wrap(attr, *arguments)
  6.     def __init__(self, myfiles):
  7.         self._myfiles = myfiles
  8.     def _wrap(self, attr, *arguments):
  9.         def g(*a, **kw):
  10.             for f in self._myfiles:
  11.                 res = getattr(f, attr, *arguments)(*a, **kw)
  12.             return res
  13.         return g
  14. sys.stdout = multipleSave([ sys.stdout, open('file.txt', 'w') ])
  15. # Python小白学习交流群:711312441
  16. # all print statement works here
  17. print ('123')
  18. print (sys.stdout, 'this is second line')
  19. sys.stdout.write('this is third linen')
复制代码
输出:
  1. # file.txt will be created on the same directory with multiple logs in it.
  2. 123
  3. <__main__.multipleSave object at 0x00000226811A0048> this is second line
  4. this is third line
复制代码
为了将输出的控制台结果存储在一个文件中,我们可以使用open() 方法来存储它。我们将所有的控制台输出存储在同一个日志文件中。
这样,我们可以存储任何打印到控制台的输出,并将其保存到日志文件中。

来源:https://www.cnblogs.com/python1111/p/17689766.html
免责声明:由于采集信息均来自互联网,如果侵犯了您的权益,请联系我们【E-Mail:cb@itdo.tech】 我们会及时删除侵权内容,谢谢合作!

举报 回复 使用道具