每当尝试使用 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 笔记本环境中执行此操作?
提前致谢。