间谍IPython控制台input()失败

时间:2018-09-12 15:39:53

标签: python input console ipython spyder

我正在尝试使用input()运行一个简单的while循环以定期停止流,如下所示:

Python 3.6.3 |Anaconda, Inc.| (default, Oct 15 2017, 03:27:45) [MSC v.1900 64 bit (AMD64)]
Type "copyright", "credits" or "license" for more information.

IPython 6.1.0 -- An enhanced Interactive Python.

In [1]: while True:
   ...:     print("Hello")
   ...:     x = input("enter a num")
   ...:     if x == 1:
   ...:         print("ok")
   ...:         
Hello

enter a num1
Hello

enter a num1
Hello

enter a num1

但是,似乎经过了几次之后,我再也无法按下Enter键,甚至无法使用热键停止执行代码。有人知道这是Spyder的IPython控制台出现问题还是本地错误?

0 个答案:

没有答案