5

每当尝试使用 ipython notebook 使用 python 之类的 input() 函数从键盘输入值时,它都会出错。

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 笔记本环境中执行此操作?

提前致谢。

4

1 回答 1

4

使用raw_input. (还有更多字符,所以 SO 允许我发布答案)

于 2013-08-12T12:48:13.710 回答