大家好,
目前看彭彭老師的youtube videos學習python,目前學習到if判斷式
我跟著老師打的程式出現了錯誤無法正確跑完,煩請大家教導我哪裡出錯,謝謝
以下為程式碼
x=int(input('enter a number: '))
y=int(input('enter a number: '))
op=input('enter an operator: +, -, *, /: ')
if op=='+':
print(x+y)
elif op=='-':
print(x-y)
elif op=='*':
print(x*y)
elif op=='/':
print(x/y)
else:
print('not an operator')
輸入完兩個數值及運算子後,出現以下訊息,
enter a number: 6
enter a number: 8
enter an operator: +, -, *, /: /
Traceback (most recent call last):
File "condition2.py", line 3, in <module>
op=input('enter an operator: +, -, *, /: ')
File "<string>", line 1
/
^
SyntaxError: unexpected EOF while parsing
請問我改如何修改讓程式繼續跑下去呢?
謝謝