python核心編程第九章習題答案(2)

來源:互聯網
上載者:User

9–9.   Py thon 文檔 字串. 進入 Python  標準庫所在的目錄. 檢查每個 .py 檔案看是否有 
__doc__ 字串, 如果有, 對其格式進行適當的整理歸類. 你的程式執行完畢後, 應該會產生一個
漂亮的清單. 裡邊列出哪些模組有文檔字串, 以及文檔字串的內容. 清單最後附上那些沒有文

檔字串模組的名字.

#filename:test9-9.pyimport oshas=[]nhas=[]def doc_string():    os.chdir("G:\\Python")    cwd=os.getcwd()    #print cwd    doclist=os.listdir(cwd)    for d in doclist:        path = os.path.join(cwd,d)        #print path        if os.path.isfile(path):            h_doc=0            fp=open(path,'r')            for line in fp:                if '\'\'\'' in line:                    has.append(path)                    h_doc=1                    break            if h_doc==0:                nhas.append(path)            fp.close()    print "doc has __doc__:",has    print "\ndoc hasn't __doc__:",nhas                        doc_string()

並沒有完成全部功能,如輸出文檔字串

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.