免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
最近访问板块 发新帖
查看: 2107 | 回复: 4
打印 上一主题 下一主题

请问:why 出错 [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2006-07-13 11:40 |只看该作者 |倒序浏览
#copy file
def copyFile(oldFile, newFile):
    f = open(oldFile, "r")
    f2 = open(newFile, "w")
while 1:
    text = f.readline()
    if text == "":
        break
f2.write(text)
f.close()
f2.close()



copyFile("test.dat","cop.dat");
>>>
Traceback (most recent call last):
  File "E:/ProjectGroup/book/python/Example/CopyFile.py", line 6, in -toplevel-
    text = f.readline()
NameError: name 'f' is not defined

论坛徽章:
0
2 [报告]
发表于 2006-07-13 14:43 |只看该作者
你的缩近没搞对。while以下的代码都没有缩近,而与def平级,这样它们不再是函数内部的代码,所以出错了。

论坛徽章:
0
3 [报告]
发表于 2006-07-13 16:28 |只看该作者
谢谢提醒:
修改后,

#copy file
def copyFile(oldFile, newFile):
    f = open(oldFile, "r")
    f2 = open(newFile, "w")
    while 1:
        text=f.readline()
    if text == "":
        break
    f2.write(text)
    f.close()
    f2.close()



copyFile("test.dat","cop.dat")


提示:
There's and error in your program;
*** 'break' outside loop

论坛徽章:
0
4 [报告]
发表于 2006-07-14 09:06 |只看该作者

  1.     while 1:
  2.         text=f.readline()
  3.     if text == "":
  4.         break
复制代码


缩近不对,if应与上一句相同的缩近,而你的与while的缩近一致了。改为:


  1.     while 1:
  2.         text=f.readline()
  3.         if text == "":
  4.             break
复制代码

论坛徽章:
0
5 [报告]
发表于 2006-07-14 09:59 |只看该作者
3ks very much
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP