python 交互模式中的错误?
我在 python 交互模式下尝试像下面这样编码时得到了语法错误反应。
>>> while True:
... reply = raw_input('enter text:')
... if reply == 'stop':
... break
... print reply
... print 'bye'
File "<stdin>", line 6
print reply
^
SyntaxError: invalid syntax
>>>
但如果另存为脚本则可以正常执行。
~ $cat test.py
#!/usr/bin/env python
# encoding=utf8
while True:
reply = raw_input('enter text:')
if reply == 'stop':
break
print reply
print 'bye'
~ $python test.py
enter text:19
19
enter text:456789
456789
enter text:$%^&*(
$%^&*(
enter text:TGHJKLO:P
TGHJKLO:P
enter text:#$%^&*()_
#$%^&*()_
enter text:stop
bye
这是一个错误吗?或者我应该了解有关 python 交互模式的任何其他事情?
~ $python -V
Python 2.6.6
i got the syntax error reaction while try coding like bellow in python interactive mode.
>>> while True:
... reply = raw_input('enter text:')
... if reply == 'stop':
... break
... print reply
... print 'bye'
File "<stdin>", line 6
print reply
^
SyntaxError: invalid syntax
>>>
but it executed normally if save as script.
~ $cat test.py
#!/usr/bin/env python
# encoding=utf8
while True:
reply = raw_input('enter text:')
if reply == 'stop':
break
print reply
print 'bye'
~ $python test.py
enter text:19
19
enter text:456789
456789
enter text:$%^&*(
$%^&*(
enter text:TGHJKLO:P
TGHJKLO:P
enter text:#$%^&*()_
#$%^&*()_
enter text:stop
bye
is it a bug? or any other things i should know about python interactive mode?
~ $python -V
Python 2.6.6
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我认为当您返回到缩进的第一列时,必须将其留空,以表明您打开的块现在已准备好进行解释。
如果将其放入函数中,请在其正常工作后调用它。
I think when you return to the first column of indentation this must be left empty its to indicate that the block you opened is now ready to be interpreted.
If you put this in a function an invoke it after it works properly.