Chinaunix

标题: 一个简单的问题,为什么break不能跳出循环? [打印本页]

作者: darkboy    时间: 2007-10-23 14:26
标题: 一个简单的问题,为什么break不能跳出循环?
下面这段代码来自一个python教程,我运行它的时候输入quit,居然没有跳出循环,仍旧执行"Enter something:",谁能指点迷津?谢谢.


#!/usr/bin/python
# Filename: break.py

while True:
    s = raw_input('Enter something : ')
    if s == 'quit':
        break
    print 'Length of the string is', len(s)
print 'Done'

[ 本帖最后由 darkboy 于 2007-10-23 15:02 编辑 ]
作者: musics    时间: 2007-10-23 16:14
完全正确的啊,难道是传说中的RPWT
作者: darkboy    时间: 2007-10-23 16:28
汗!不是吧?
我输入quit后回车,仍旧提示我输入,下面是我控制台内容:
Enter something : quit
Length of the string is 5
Enter something :

郁闷!我用的是eclipse+Pydev

作者: rubee    时间: 2007-10-23 16:36
s=eval(raw_input('Enter something  : '))看看这个可以不
作者: JarLing    时间: 2007-10-23 16:38
是不是多输了一个空格?
用s.strip()去除空格看看
作者: darkboy    时间: 2007-10-23 16:40
4楼的会出错,当我输入a,控制台的错误如下:
Enter something : a
Traceback (most recent call last):
  File "D:\work32\yp\src\break.py", line 5, in <module>
    s =eval(raw_input('Enter something : '))
  File "<string>", line 1
    a

    ^
SyntaxError: unexpected EOF while parsing
作者: darkboy    时间: 2007-10-23 16:44
应该不是5楼说的空格的问题,我用了s.strip(),问题仍旧存在,大家难道输入quit可以执行“Done”?
作者: happygg    时间: 2007-10-23 17:05
>pythonw -u "test.py"
Enter something : 11
Length of the string is 2
Enter something : quit
Done
>Exit code: 0

运行了楼主程序,没有问题
作者: darkboy    时间: 2007-10-23 17:12
我在eclipse +Pydev里面运行才出现上面的一些问题,而且输入一个a,显示的字符串长度是2,如下:
Enter something : a
Length of the string is 2
Enter something :

但是如果在windows下我直接双击break.py这个文件,输入一个a,显示的字符串长度却是1,而且输入quit能够跳出循环,这样看来,难道是IDE造成的?
十分不解!
作者: limodou    时间: 2007-10-23 17:18
可以使用repr(s)打印看一下是不是最后多了东西.好象pydev在处理从命令行得到的东西有问题.
作者: darkboy    时间: 2007-10-23 17:21
刚才在网上看到有人说Pydev对Python的支持不好,在处理raw_input函数的时候没有把最后输入的回车符去掉,以至于引起错误(10楼的兄弟说的很对)。这是个bug.
转摘:
补记(2006年7月30日):将这个bug提交给了Pydev的用户组,Fabio Zadrozny  的回复是:

Nope, this is a python bug mixed with a bad specification on how a shell is supposed to behave.

Usually shells put a '\n' when you press enter, but the Eclipse console puts '\r\n' and python does not handle it well, as this is not specified anywhere, and does not seem such awkward, my feeling is that it's a python bug, but you can surely argue the other way... so, you can submit a bug to eclipse.org and python.org and see who'll fix it... (or you can handle it in your program).

Cheers,

Fabio

今天中头彩了~~
非常感谢楼上各位的解答!辛苦了~

[ 本帖最后由 darkboy 于 2007-10-23 17:36 编辑 ]
作者: ttvast    时间: 2007-10-23 23:39
如果是回车问题,为什么strip不起作用?
作者: darkboy    时间: 2007-10-24 09:11
楼上的,我是这样用的,不知道有没问题,不过结果显示仍旧有回车符。

while True:
    s=raw_input('Enter something:')
    s.strip()
    print repr(s)
    if s=='quit':
       break
    print 'Length of the string is', len(s)
print 'Done'

控制台显示:
Enter something:4
'4\r'
Length of the string is 2
Enter something:
作者: 3227049    时间: 2007-10-24 09:16
s=s.strip()......
作者: darkboy    时间: 2007-10-24 10:04

s=s.strip()就ok
几个疑点都弄清楚了,谢谢大家

[ 本帖最后由 darkboy 于 2007-10-24 10:17 编辑 ]
作者: dinghwy    时间: 2007-10-26 15:04
学习了
作者: riverbird2005    时间: 2008-01-17 18:09
要不你用别的编辑器看看是不是多了什么多余的不可见字符.
作者: study_oc    时间: 2011-07-03 08:40
今天在python 3.2 for windows下出现了,直接双击py文件或者直接在命令行输入py文件运行,都会出现这个问题,而在IDLE中执行,没有问题。

14、15楼的方法就能解决问题。感谢共享。




欢迎光临 Chinaunix (http://bbs.chinaunix.net/) Powered by Discuz! X3.2