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

print重定向

时间:2020-04-17 00:44:21      阅读:59      评论:0      收藏:0      [点我收藏+]

标签:save   utf-8   file   print   pen   std   pytho   with open   port   

# -*- coding: utf-8 -*-
‘‘‘
@File  : test.py
@Author: qiguagnhui
@Date  : 2020-04-11 23:17
@Desc  :
‘‘‘
import os
import sys


savedStdout = sys.stdout  #保存标准输出流
with open(‘out.txt‘, ‘w+‘) as file:
    sys.stdout = file  #标准输出重定向至文件
    content = os.popen(‘pwd; which python‘, ‘r‘).read()
    print(content)

sys.stdout = savedStdout  #恢复标准输出流

print重定向

标签:save   utf-8   file   print   pen   std   pytho   with open   port   

原文地址:https://www.cnblogs.com/hui-code/p/12716903.html

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