我正在使用Win 10 64位,安装了最新的Anaconda 4.3.1,其中包括Python 3.6.0和ipython 5.1.0。
我正在尝试运行的代码
# Simple Python program to Add Two Numbers
number1 = input(" Please Enter the First Number: ")
number2 = input(" Please Enter the second number: ")
# Using arithmetic + Operator to add two numbers
sum = float(number1) + float(number2)
print('The sum of {0} and {1} is {2}'.format(number1, number2, sum))
问题是当执行输入函数时Ipython解释器终止。 相同的代码可以正常使用python
答案 0 :(得分:1)
将ipython软件包更新到最新的6.0.0解决了这个问题
您可以使用
conda update ipython
或从Anaconda Navigator中更新ipython