1
私はWin 10 64ビットを使用しています。最新のAnaconda 4.3.1がインストールされています。これにはPython 3.6.0とipython 5.1.0が含まれています。入力の実行後にipython 5.1.0が停止する
私はIpythonインタプリタが終了する入力機能を実行する際に問題がある
# 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))
を実行しようとしていたコード。 同じコードは、あなたは内から
conda update ipython
または更新ipythonを使用することができ、問題
を解決し、最新の6.0.0にipythonパッケージの更新のpython
あなたのコードには間違いがあります。同じコードを実行していると私にとってうまくいきます。 :-S –