首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 开发语言 > perl python >

python资料读写2

2012-09-05 
python文件读写2读文件:fname raw_input(Please input the file path:)print fname?try:? ? fobj op

python文件读写2

读文件:

fname = raw_input("Please input the file path:")

print fname

?

try:

? ? fobj = open(fname,"r")

except IOError,e:

? ? print "The file '%s' is read error! \n"%fname,e

else:

? ? for eachLine in fobj:

? ? ? ? print eachLine,

? ? fobj.close()

热点排行