13 python 練習題 檔案重定向

2022-09-19 05:57:07 字數 463 閱讀 5572

在程式中將輸出內容重定向到乙個檔案中, 同時也能重定向回來

#!/usr/bin/python

# -*- coding:utf-8 -*-

import sys

def testfuc():

print "it is a test"

s**edstdout = sys.stdout #儲存標準輸出流

with open('out.txt', 'w+') as file:

sys.stdout = file #標準輸出重定向至檔案

print 'this message is for file!'

testfuc()

sys.stdout = s**edstdout #恢復標準輸出流

print 'this message is for screen!'

testfuc()

python 檔案練習題

練習一 建立檔案data.txt,檔案共100000行,每行存放乙個1 100之間 的整數,寫完後讀取檔案內容 import random f1 open home kiosk data.text w for i in range 100000 f1.write str random.randint...

python書中練習題 python練習題

1 定義乙個空列表,接收從鍵盤輸入的整數,把列表傳給乙個從大到小排序的函式,再輸出排序後的列表的值 listex b 0 a int input 請輸入列表長度 while b a num int input 請輸入字元 b 1 print listex sum 0 for i in range 0...

python的練習題 Python練習題

1 使用while迴圈輸入1 2 3 4 5 6 8 9 10 i 0while i 10 i i 1 if i 7 continue print i 結果 e python python python test.py1 2 求1 100的所有數的和 i 0sum 0 while i 100 i 1...