111zhengsenlin.blog.chinaunix.net
zhengsenlin888
全部博文(362)
2014年(1)
2013年(58)
2011年(115)
2010年(112)
2009年(76)
1抹温暖
shuining
expert1
曾德标
daivehhm
danielah
大鬼不动
prolj
gaokeke1
飘絮絮絮
wb123456
ZShen
hxl
老男孩Li
tomorrow
mcc543
fwx56181
分类: Python/Ruby
2009-10-29 16:15:39
'readtextfile.py --- read and display text file'
# get filenamefname = raw_input('Enter filename:')print
# attempt to open file for reading
try: fobj = open(fname,'r')except IOError, e: print "*** file open error:",eelse: # display contents to the screen for eachline in fobj: print eachline, fobj.close()
上一篇:第一个python程序 创建文件写入内容,读出内容
下一篇:创建文件 maketextfile.py
登录 注册