《Python核心編程》第二版第55頁第三章練習 續二 -Python核心編程答案-自己做的-

來源:互聯網
上載者:User

3-10.
異常。使用類似readTextFile.py中異常處理的方法取代makeTextFile.py中對os.path.exists()的調用。反過來,用os.path.exists()取代readTextFile.py中的異常處理方法。
【答案】
代碼如下:
def makeTextFile():

    import os
    ls = os.linesep
   
    # get filename
    while True:
        fname = raw_input('Enter file name: ')
        try:
            open(fname, 'r')
            print" *** ERROR: '%s' already exists" % fname
        except IOError:
            break
            fname.close()

   
    # get file content (text) lines
    all = []
    print "\nEnter lines ('.' by itself to quit). \n"
   
    # loop until user terminates input
    while True:
        entry = raw_input('>')
        if entry == '.':
            break
        else:
            all.append(entry)
           
    # Write lines to file with proper line-ending
    fobj = open(fname, 'w')
    fobj.writelines(['%s%s' % (x,ls) for x in all])
    fobj.close()
    print 'Done'

def readTextFile():

    # get filename
    fname = raw_input('Enter filename: ')
   
    import os
   
    if os.path.exists(fname):
        fobj = open(fname, 'r')
        for eachLine in fobj:
            print eachLine,
        fobj.close()  
    else:
        print 'Can not find this file!'

print "'m' means make a new text file."
print "'r' means read a text file."
choice = raw_input('Please input your choice ... ')
if choice == 'm': makeTextFile()
elif choice == 'r': readTextFile()
else: print'end'

 

3-11.
字串格式化。不再抑制readTextFile.py中print語句產生的NEWLINE字元,修改你的代碼,在顯示一行之前刪除每行末尾的空白。這樣,你就可以移除print語句末尾的逗號了。提示:使用字串對象的strip()方法。
【答案】
代碼如下:
# get filename
fname = raw_input('Enter file name: ')

# attempt to open file for reading
try:
    fobj = open(fname, 'r')
except IOError, e:
    print"*** file open error:", e
else:
    # display contents to the screen
    for eachLine in fobj:
        print eachLine.rstrip()
    fobj.close()

 

3-12.
合并源檔案。將兩段程式合并成一個,給它起一個你喜歡的名字,比如readNwriteTextFiles.py。讓使用者自己選擇是建立還是顯示一個文字檔。
【答案】
代碼如下:
def makeTextFile():

    import os
    ls = os.linesep
   
    # get filename
    while True:
        fname = raw_input('Enter file name: ')
        if os.path.exists(fname):
            print" *** ERROR: '%s' already exists" % fname
        else:
            break
   
    # get file content (text) lines
    all = []
    print "\nEnter lines ('.' by itself to quit). \n"
   
    # loop until user terminates input
    while True:
        entry = raw_input('>')
        if entry == '.':
            break
        else:
            all.append(entry)
           
    # Write lines to file with proper line-ending
    fobj = open(fname, 'w')
    fobj.writelines(['%s%s' % (x,ls) for x in all])
    fobj.close()
    print 'Done'

def readTextFile():

    # get filename
    fname = raw_input('Enter filename: ')
    print
   
    # attempt to open file for reading
    try:
        fobj = open(fname, 'r')
    except IOError, e:
        print "*** file open error:", e
    else:
        # display contents to the screen
        for eachLine in fobj:
            print eachLine,
        fobj.close()

print "'m' means make a new text file."
print "'r' means read a text file."
choice = raw_input('Please input your choice ... ')
if choice == 'm': makeTextFile()
elif choice == 'r': readTextFile()
else: print'end'

 

3-13.
*添加新功能。將你上一個問題改造好的readNwriteTextFiles.py增加一個新功能:允許使用者編輯一個已經存在的文字檔。你可以使用任何方式,無論是一次編輯一行,還是一次編輯所有的文本。需要提醒一下的是,一次編輯全部文本有一定難度,你可能需要藉助GUI工具包或一個基於螢幕文本編輯的模組比如curses模組。要允許使用者儲存他的修改(儲存到檔案)或取消他的修改(不改變原始檔案),並且要確保原始檔案的安全性(不論程式是否正常關閉)。
【答案】目前感覺有點難度,這個思考題只能押後了。

 

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.