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模組。要允許使用者儲存他的修改(儲存到檔案)或取消他的修改(不改變原始檔案),並且要確保原始檔案的安全性(不論程式是否正常關閉)。
【答案】目前感覺有點難度,這個思考題只能押後了。