1. 程式人生 > >python---對python的help命令內容寫入特定檔案中

python---對python的help命令內容寫入特定檔案中

python—對python的help命令內容寫入特定檔案中

import string
import sys
import os

#log.txt為本工作目錄下檔案
#sys.stdout=open('log.txt','w')#使用全覆蓋的方式寫入
sys.stdout=open('log.txt','a')#使用追加的方式寫入
help(sys)
sys.stdout.close()

這裡寫圖片描述

這裡寫圖片描述