"This is a test module"
import sys
import os
ls = os.linesep
def make():
'maketextfile.py --- create text file'
# get filename
while True:
if os.path.exists('C:\Python26\make.log'):
print "ERROR: '%s' already exists" % ('C:\Python26\make.log')
else:
break
# get file content (text) lines
all=[]
print"\nEnter lines ('.'by itselef 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(r'C:\Python26\make.log','w')
fobj.writelines(['%s%s' % (x,ls) for x in all])
fobj.close()
print 'DONE!'
def read():
'readtextfile.py --- read and display text file'
# 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()
if __name__ == '__main__':
make()
read()
阅读(2844) | 评论(0) | 转发(0) |