在ipython笔记本中读取输入值

时间:2013-08-12 12:08:20

标签: python ipython ipython-notebook

每当尝试使用像python这样的input()函数使用ipython notebook从键盘输入值时,就会出错。

EOFError                                  Traceback (most recent call last)
<ipython-input-1-725a22d6f154> in <module>()
     8 #Reads three Input values for x,y and z
     9 print "Enter Values of x, y, z :- "
---> 10 x = input()
     11 y = input()
     12 z = input()

EOFError: EOF when reading a line

同样在python中正常工作。我怎么能在ipython笔记本环境中做到这一点?

提前感谢。

1 个答案:

答案 0 :(得分:4)

使用raw_input。 (以及一些更多的字符,所以SO允许我发布答案)