1
我使用Win 10 64位,安裝了最新的Anaconda 4.3.1,其中包括Python 3.6.0和ipython 5.1.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
沒有什麼我可以看到你的代碼錯了,一個d運行相同的代碼適用於我。 :-S –